Skip to content

Commit

Permalink
Merge pull request #2104 from ethereum/yann300-patch-3
Browse files Browse the repository at this point in the history
Clone remix only if needed
  • Loading branch information
yann300 committed Jun 21, 2019
2 parents 93ccf19 + 7a975c7 commit 1b0c950
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}

0 comments on commit 1b0c950

Please sign in to comment.