mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-05-20 12:48:43 +00:00
adjust postinstall command so that it works in Windows as well as *nix (#8744)
Semicolons in postinstall commands don't work in Windows. '&&' works in *nix and in at least some versions of Windows. This changes the meaning of the postinstall line slightly because now the later commands won't run if the earlier ones failed but I don't see that being a problem.
This commit is contained in:
parent
018976a723
commit
be948a1bf2
1 changed files with 1 additions and 1 deletions
|
|
@ -159,7 +159,7 @@
|
|||
"client:e2e": "node test/client/e2e/runner.js",
|
||||
"client:test": "npm run client:unit && npm run client:e2e",
|
||||
"start": "gulp run:dev",
|
||||
"postinstall": "bower --config.interactive=false install -f; gulp build; npm run client:build"
|
||||
"postinstall": "bower --config.interactive=false install -f && gulp build && npm run client:build"
|
||||
},
|
||||
"devDependencies": {
|
||||
"babel-plugin-istanbul": "^4.0.0",
|
||||
|
|
|
|||
Loading…
Reference in a new issue