diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-06-14 23:48:11 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-06-14 23:48:11 +0200 |
commit | 5d83c092dbbe7bce85e5445ec4260562c6425529 (patch) | |
tree | 0cca03087271a8af406287125bc27366d5a72225 | |
parent | e8803983ba792822cf90fc80bbd50fcfa071d255 (diff) | |
download | jenkins.debian.net-5d83c092dbbe7bce85e5445ec4260562c6425529.tar.xz |
reproducible openwrt: fix syntax
-rwxr-xr-x | bin/reproducible_openwrt.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_openwrt.sh b/bin/reproducible_openwrt.sh index bb98018e..84113da1 100755 --- a/bin/reproducible_openwrt.sh +++ b/bin/reproducible_openwrt.sh @@ -60,7 +60,7 @@ call_debbindiff() { msg="$(date -u) - Something weird happened when running $DBDVERSION on $1/$2 (which exited with $RESULT) and I don't know how to handle it." ;; esac - if [ ! -z $msg ] ; then + if [ ! -z "$msg" ] ; then echo $msg | tee -a $TMPDIR/$1/$2.html fi } |