diff options
author | Péter HÉJA <PeterHeja@users.noreply.github.com> | 2019-11-14 18:32:21 +0100 |
---|---|---|
committer | Marc Cornellà <marc.cornella@live.com> | 2019-11-14 18:32:21 +0100 |
commit | e453731fc93419cb71661dd1f277965e3d07ff0e (patch) | |
tree | 75f892b56eb3ef772e7c34eb307654d33a4691f2 /plugins | |
parent | 24d83d1e8c84689d6fe0953f6fa6743d983fa07a (diff) | |
download | zsh-e453731fc93419cb71661dd1f277965e3d07ff0e.tar.gz zsh-e453731fc93419cb71661dd1f277965e3d07ff0e.tar.bz2 zsh-e453731fc93419cb71661dd1f277965e3d07ff0e.zip |
osx: fix exit on unknown command in spotify function (#8375)
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/osx/spotify | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/osx/spotify b/plugins/osx/spotify index 39f8e0437..78d6c7d0f 100644 --- a/plugins/osx/spotify +++ b/plugins/osx/spotify @@ -470,7 +470,7 @@ while [ $# -gt 0 ]; do break ;; * ) showHelp; - exit 1; + break; esac done |