diff options
author | Holger Levsen <holger@layer-acht.org> | 2016-11-07 14:11:20 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-11-07 14:11:20 +0100 |
commit | 9f021b658c764292b9ebf93fa712d89d927045e4 (patch) | |
tree | d0aa44687813587c88d118b4e2d92053fecabbdc /bin/reproducible_schedule_on_demand.sh | |
parent | 1f4b35e06d7ff3629d8f04a8aebc98cccd7a1905 (diff) | |
download | jenkins.debian.net-9f021b658c764292b9ebf93fa712d89d927045e4.tar.xz |
reproducible Debian: fix syntax
Diffstat (limited to 'bin/reproducible_schedule_on_demand.sh')
-rwxr-xr-x | bin/reproducible_schedule_on_demand.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_schedule_on_demand.sh b/bin/reproducible_schedule_on_demand.sh index 8358319b..d521fd98 100755 --- a/bin/reproducible_schedule_on_demand.sh +++ b/bin/reproducible_schedule_on_demand.sh @@ -13,7 +13,7 @@ else exit 1 fi -if [ "$@" = "" ] ; then +if [ -z "$@" ] ; then PARAMS = "--help" else PARAMS = "$@" |