Created
September 17, 2013 13:53
-
-
Save nordicdyno/6594622 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 | |
| if [ ! -d "ejs-bundler" ]; then | |
| echo "### CLONE EJS BUNDLER" | |
| git clone git@github.com:nordicdyno/ejs-bundler.git | |
| echo "### INSTALL EJS-BUNDLER" | |
| npm install ejs-bundler | |
| rm -rf ejs-bundler | |
| fi | |
| if [ ! -d "jade-bundler" ]; then | |
| echo "### CLONE JADES BUNDLER" | |
| git clone git@github.com:nordicdyno/jade-bundler.git | |
| echo "### INSTALL JADE-BUNDLER" | |
| npm install jade-bundler | |
| rm -rf jade-bundler | |
| fi | |
| if [ ! -d "vivid-builder" ]; then | |
| echo "CLONE VIVID BUILDER" | |
| git clone git@github.com:nordicdyno/vivid-builder.git | |
| echo "### INSTALL VIVID BUILDER" | |
| npm install vivid-builder | |
| rm -rf vivid-builder | |
| fi | |
| npm install coffee-script@1.6.3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment