diff options
-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 |