Created
November 26, 2018 21:33
-
-
Save iha2/854d9b8bb39c766950fd84303d066e28 to your computer and use it in GitHub Desktop.
cljs-sandbox maker
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
sandboxName=$1 | |
if [ $sandboxName = "" ]; then | |
sandboxName="cljs-sandbox"; | |
fi | |
wget https://codeload.github.com/iha2/cljs-sandbox/zip/master | |
unzip master | |
rm -rf master | |
mv cljs-sandbox-master $sandboxName | |
cd $sandboxName | |
yarn install | |
rm .gitignore | |
cd .. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment