diff options
author | Axel Beckert <abe@deuxchevaux.org> | 2014-10-10 13:05:35 +0200 |
---|---|---|
committer | Axel Beckert <abe@deuxchevaux.org> | 2014-10-10 13:05:35 +0200 |
commit | 6150764dafd319031ecf2448a3fb5fec22f715f8 (patch) | |
tree | 001ae99b6de2d5c87bf3b687cb9a9582a8577a6d | |
parent | fba5d13ebe3aa6fc4adc72f5a6b3ecfd96b734fe (diff) | |
download | zsh-6150764dafd319031ecf2448a3fb5fec22f715f8.tar.gz zsh-6150764dafd319031ecf2448a3fb5fec22f715f8.zip |
Consistent quoting in zsh4 wrapper
Git-Dch: Ignore
-rwxr-xr-x | debian/zsh4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/debian/zsh4 b/debian/zsh4 index 5188086fd..5b0e0766b 100755 --- a/debian/zsh4 +++ b/debian/zsh4 @@ -6,9 +6,9 @@ # See https://bugs.debian.org/707760 for reasoning, details and # discussion. -if [[ $0 == *zsh4* ]]; then +if [[ "$0" == *zsh4* ]]; then static='' - if [[ $0 == *static* ]]; then + if [[ "$0" == *static* ]]; then static=-static fi |