Merge pull request #2104 from ethereum/yann300-patch-3

Clone remix only if needed
pull/1/head
yann300 5 years ago committed by GitHub
commit 1b0c9501c4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      package.json

@ -175,6 +175,6 @@
"test-browser": "npm-run-all -lpr selenium downloadsolc_root make-mock-compiler serve browsertest",
"watch": "watchify src/index.js -dv -p browserify-reload -o build/app.js --exclude solc",
"reinstall": "rm ./node-modules/ -rf; rm package-lock.json; rm ./build/ -rf; npm install; npm run build",
"postinstall": "cd .. && git clone https://github.com/ethereum/remix && cd remix && git checkout 517db1adce48feac758aff7465241c0dd385b906 && npm install && npm run bootstrap && cd .. && cd repo && npm run setupremix"
"postinstall": "cd .. && if [ ! -d \"remix\" ] ; then git clone https://github.com/ethereum/remix; fi && cd remix && git checkout 517db1adce48feac758aff7465241c0dd385b906 && npm install && npm run bootstrap && cd .. && cd repo && npm run setupremix"
}
}

Loading…
Cancel
Save