Skip to content

Commit

Permalink
Use && instead of ; for building on Windows. Fix FelisCatus#214.
Browse files Browse the repository at this point in the history
  • Loading branch information
FelisCatus committed Feb 14, 2015
1 parent a228081 commit 2422487
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions omega-build/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"grunt-hub": "^0.7.0"
},
"scripts": {
"deps": "npm install && (cd ../omega-pac && npm install); (cd ../omega-target && npm install); (cd ../omega-web && npm install && bower install); (cd ../omega-target-chromium-extension/ && npm install);",
"dev": "(cd ../omega-pac && npm run dev); (cd ../omega-target && npm run dev); (cd ../omega-web && npm run dev); (cd ../omega-target-chromium-extension/ && npm run dev);"
"deps": "npm install && (cd ../omega-pac && npm install) && (cd ../omega-target && npm install) && (cd ../omega-web && npm install && bower install) && (cd ../omega-target-chromium-extension/ && npm install)",
"dev": "(cd ../omega-pac && npm run dev) && (cd ../omega-target && npm run dev) && (cd ../omega-web && npm run dev) && (cd ../omega-target-chromium-extension/ && npm run dev)"
}
}
2 changes: 1 addition & 1 deletion omega-target-chromium-extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@
"omega-target": "./omega_target_shim.js"
},
"scripts": {
"dev": "npm link omega-target; npm link omega-web"
"dev": "npm link omega-target && npm link omega-web"
}
}
2 changes: 1 addition & 1 deletion omega-target/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@
"omega-pac": "./omega_pac_shim.js"
},
"scripts": {
"dev": "npm link omega-pac; npm link"
"dev": "npm link omega-pac && npm link"
}
}
2 changes: 1 addition & 1 deletion omega-web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@
"omega-pac": "../omega-pac"
},
"scripts": {
"dev": "npm link omega-pac; npm link"
"dev": "npm link omega-pac && npm link"
}
}

0 comments on commit 2422487

Please sign in to comment.