Skip to content

Instantly share code, notes, and snippets.

@nordicdyno
Created September 17, 2013 13:53
Show Gist options
  • Select an option

  • Save nordicdyno/6594622 to your computer and use it in GitHub Desktop.

Select an option

Save nordicdyno/6594622 to your computer and use it in GitHub Desktop.
#/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