Skip to content

Commit

Permalink
Merge pull request GPII#19 from yzen/GPII-91
Browse files Browse the repository at this point in the history
GPII-91: updating build script to run 'npm install' in addition to cloning the universal repository. This is a required chance after GPII/universal#77
  • Loading branch information
Kasper Markus committed Mar 13, 2013
2 parents 2994d20 + 4718480 commit e5f3583
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion build.sh
Expand Up @@ -10,9 +10,10 @@
# You may obtain a copy of the License at
# https://github.com/gpii/universal/LICENSE.txt

currentDir=`pwd`
node_modules="../node_modules"
universal="../node_modules/universal"
repoURL="git://github.com/GPII/universal.git"
repoURL="git://github.com/GPII/universal.git"
usbListenerDir="./usbDriveListener"
gpiiInstallDir="/usr/local/gpii"
gpiiStateDir="/var/lib/gpii"
Expand All @@ -32,6 +33,9 @@ else
echo "$universal does not exist"
echo "cloning universal"
git clone "$repoURL" "$universal"
cd $universal
npm install
cd $currentDir
fi

# Compile the GSettings C++ Bridge
Expand Down

0 comments on commit e5f3583

Please sign in to comment.