shared-git-hooks
Advanced tools
Comparing version 1.1.2 to 1.1.3
@@ -28,3 +28,3 @@ /*! | ||
fs.writeFileSync(resolve(__dirname, 'hook.sh'), tpl) | ||
fs.lchmodSync(resolve(__dirname, 'hook.sh'), '744') | ||
fs.chmodSync(resolve(__dirname, 'hook.sh'), '744') | ||
} | ||
@@ -111,3 +111,3 @@ | ||
exports.log() | ||
exports.log(`> Please add your scripts in ${__dirname}/hooks or $GIT_HOOKS_PATH\n`) | ||
exports.log(`> Please add your scripts in ${exports.findProjectRoot()}/hooks or $GIT_HOOKS_PATH\n`) | ||
} |
{ | ||
"name": "shared-git-hooks", | ||
"version": "1.1.2", | ||
"version": "1.1.3", | ||
"description": "Share git hooks across your team through npm install", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
# `shared-git-hooks` | ||
[![js-standard-style](https://img.shields.io/badge/code%20style-standard-green.svg?style=flat-square)](https://github.com/feross/standard) | ||
[![build status](https://img.shields.io/travis/kilianc/shared-git-hooks.svg?style=flat-square)](https://app.wercker.com/#applications/567b8fc61e29124443086121) | ||
[![build status](https://img.shields.io/travis/kilianc/shared-git-hooks.svg?style=flat-square)](https://travis-ci.org/kilianc/shared-git-hooks) | ||
[![coverage](https://img.shields.io/codeclimate/coverage/github/kilianc/shared-git-hooks.svg?style=flat-square)](https://codeclimate.com/github/kilianc/shared-git-hooks/coverage) | ||
@@ -6,0 +6,0 @@ [![npm version](https://img.shields.io/npm/v/shared-git-hooks.svg?style=flat-square)](https://www.npmjs.com/package/shared-git-hooks) |
8312