Updated SetupEnvironment to use TRAVIS_BUILD_DIR to identify paths

This commit is contained in:
Robert Hafner 2013-12-05 14:06:51 -08:00
parent 623461a926
commit 2adbb68a54

View File

@ -1,17 +1,17 @@
#!/bin/sh
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
if [ -n "$TRAVIS" ]; then
echo 'Travis config not yet written'
cp -Rp $DIR/resources /resources
cp -Rp $TRAVIS_BUILD_DIR/tests/resources /resources
/bin/bash /resources/Scripts/Provision.sh
else
# Since not in travis, lets load up a system with vagrant
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd $DIR/vagrant
VAGRANTSTATUS=$(vagrant status)