[tor-commits] [tor-browser-bundle/hardened-builds] Actually fix that bug with shifting when there's nothing to shift.

gk at torproject.org gk at torproject.org
Fri Aug 19 11:30:13 UTC 2016


commit 4424456c869552bf9b238fbc15a390a0d5ca8d9a
Author: Linus Nordberg <linus at 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



More information about the tor-commits mailing list