aboutsummaryrefslogtreecommitdiffstats
path: root/bootstrap.sh
diff options
context:
space:
mode:
authorslomo <steve.harrison@gmx.net>2011-01-21 18:44:35 +0100
committerslomo <steve.harrison@gmx.net>2011-01-21 18:44:35 +0100
commit4c1d892f634c22e16960e909a48e08b721bffca9 (patch)
tree53714b7c14c6e5cc942c074be869fcfde706f457 /bootstrap.sh
parent14b0aaf818ec6b0300c10a95fe9b2aec278adc50 (diff)
downloadosm-xapi-4c1d892f634c22e16960e909a48e08b721bffca9.tar.gz
osm-xapi-4c1d892f634c22e16960e909a48e08b721bffca9.tar.xz
osm-xapi-4c1d892f634c22e16960e909a48e08b721bffca9.zip
new bootstrap foo
Diffstat (limited to 'bootstrap.sh')
-rwxr-xr-xbootstrap.sh8
1 files changed, 8 insertions, 0 deletions
diff --git a/bootstrap.sh b/bootstrap.sh
index 802b7f1..fd458b7 100755
--- a/bootstrap.sh
+++ b/bootstrap.sh
@@ -6,6 +6,10 @@
PREFIX=`pwd`/usr/
NODE_VERSION=0.3.5
+# use full for development
+DEV_TOOLS="node-dev jslint"
+
+
# end config
###########################
@@ -45,3 +49,7 @@ fi
# load development code and compile dependencies
npm link src/nodejs/
+
+for TOOL in $DEV_TOOLS; do
+ npm install $TOOL
+done;