Commit c1b0e145a000b4c06d70548833c71b6de04d3f27
quote with spaces
now i see why it would fail before on Cmd: https://ss64.com/nt/syntax-esc.html. > If a single parameter contains spaces, you can still pass it as one item by surrounding in "quotes" - this works well for long filenames. this change fixes that by quoting the arguments with spaces inside.Michael Williams committed on 5/29/2017, 8:51:45 AM
Parent: f23cec175f1508ad225f5332c87927995639505a
Files changed
package.json | changed |
package.json | ||
---|---|---|
@@ -8,9 +8,9 @@ | ||
8 | 8 … | "scripts": { |
9 | 9 … | "test": "echo \"Error: no test specified\" && exit 1", |
10 | 10 … | "start": "electron index.js", |
11 | 11 … | "postinstall": "npm run rebuild", |
12 | - "rebuild": "cross-script npm rebuild --runtime=electron --target=$(electron -v) --abi=$(electron --abi) --disturl=https://atom.io/download/atom-shell" | |
12 … | + "rebuild": "cross-script npm rebuild --runtime=electron \"--target=$(electron -v)\" \"--abi=$(electron --abi)\" --disturl=https://atom.io/download/atom-shell" | |
13 | 13 … | }, |
14 | 14 … | "author": "Secure Scuttlebutt Consortium", |
15 | 15 … | "license": "GPL-3.0", |
16 | 16 … | "dependencies": { |
Built with git-ssb-web