Skip to content

Commit 3660c32

Browse files
fix(#66): ignore git config script if fail
Signed-off-by: Mauricio Robayo <[email protected]>
1 parent 7783fb7 commit 3660c32

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"lint": "eslint . --ext .ts --fix",
99
"test": "jest --coverage",
1010
"build": "tsc",
11-
"postinstall": "git config core.hooksPath .githooks",
12-
"prepare": "git config core.hooksPath .githooks"
11+
"postinstall": "git config core.hooksPath .githooks || true",
12+
"prepare": "git config core.hooksPath .githooks || true"
1313
},
1414
"license": "MIT",
1515
"bugs": {

0 commit comments

Comments
 (0)