Skip to content

Instantly share code, notes, and snippets.

@iha2
Created November 26, 2018 21:33
Show Gist options
  • Save iha2/854d9b8bb39c766950fd84303d066e28 to your computer and use it in GitHub Desktop.
Save iha2/854d9b8bb39c766950fd84303d066e28 to your computer and use it in GitHub Desktop.
cljs-sandbox maker
#!/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