If someone runs bin/jenkins.sh without first setting $WORKSPACE,
don't cd to their home directory and start rampaging around.
Just use the current directory.
This commit is contained in:
Dan Poirier 2013-05-27 15:40:09 -04:00
Родитель b0d2107b7d
Коммит 3c0626e2e3
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -7,6 +7,10 @@
# codebase.
set -e
if [ -z $WORKSPACE ] ; then
WORKSPACE=`/bin/pwd`
fi
cd $WORKSPACE
VENV=$WORKSPACE/venv