Skip to content

Commit

Permalink
[Fix] Prevent postinstall from ever failing on windows (#573)
Browse files Browse the repository at this point in the history
  • Loading branch information
emily-curry authored and typicode committed Aug 28, 2019
1 parent 2f56681 commit e0b99e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -22,7 +22,7 @@
"postpublish": "pinst --disable",
"lint": "eslint . --ext .js,.ts --ignore-path .gitignore",
"fix": "npm run lint -- --fix",
"postinstall": "opencollective-postinstall || true"
"postinstall": "opencollective-postinstall || exit 0"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit e0b99e6

Please sign in to comment.