Comparing version 0.15.0-rc.1 to 0.15.0-rc.2
# CHANGELOG | ||
## 0.15.0-rc.2 | ||
* Fix install error | ||
## 0.15.0-rc.1 | ||
@@ -4,0 +8,0 @@ |
@@ -11,5 +11,6 @@ "use strict"; | ||
// Find Git dir | ||
var _c = execa.sync('git', ['rev-parse', '--git-dir']), status = _c.status, stdout = _c.stdout, stderr = _c.stderr; | ||
var _c = execa.sync('git', ['rev-parse', '--git-dir']), code = _c.code, stdout = _c.stdout, stderr = _c.stderr; | ||
var gitDir = path.resolve(stdout); // Needed to normalize path on Windows | ||
if (status !== 0) { | ||
if (code !== 0) { | ||
console.log('husky > failed to install'); | ||
console.log(stderr); | ||
@@ -16,0 +17,0 @@ process.exit(1); |
{ | ||
"name": "husky", | ||
"version": "0.15.0-rc.1", | ||
"version": "0.15.0-rc.2", | ||
"description": "Prevents bad commit or push (git hooks, pre-commit/precommit, pre-push/prepush, post-merge/postmerge and all that stuff...)", | ||
@@ -56,2 +56,3 @@ "bin": { | ||
"devDependencies": { | ||
"@types/execa": "^0.8.1", | ||
"@types/jest": "^22.0.1", | ||
@@ -58,0 +59,0 @@ "@types/node": "^9.3.0", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
21785
16
292
16