commit 4424456c869552bf9b238fbc15a390a0d5ca8d9a Author: Linus Nordberg linus@torproject.org Date: Fri Aug 19 13:24:24 2016 +0200
Actually fix that bug with shifting when there's nothing to shift. --- tools/continuous-builds/park-nightly.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/continuous-builds/park-nightly.sh b/tools/continuous-builds/park-nightly.sh index dff87e2..378eb21 100755 --- a/tools/continuous-builds/park-nightly.sh +++ b/tools/continuous-builds/park-nightly.sh @@ -8,7 +8,7 @@ if [ "$1" = "-v" ]; then fi
DESTDIR=~/public_html/builds -if [ -n "$DESTDIR" ]; then +if [ -n "$1" ]; then DESTDIR=$1 shift fi
tbb-commits@lists.torproject.org