Skip to content

Commit 41f2d9d

Browse files
Merge pull request #67 from MauricioRobayo/fix/#66-deploy-error-in-cloud-platform
fix(#66): ignore git config script if fail
2 parents 7783fb7 + 3660c32 commit 41f2d9d

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)