Created
August 15, 2012 16:57
-
-
Save cianclarke/3361572 to your computer and use it in GitHub Desktop.
A typical build file for a feedhenry app project
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 | |
cd cloud | |
echo 'Installing dependencies' | |
npm install -d --force | |
export NODE_PATH=$PWD | |
echo 'Running npm test' | |
npm test | |
cd .. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment