summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorPéter HÉJA <PeterHeja@users.noreply.github.com>2019-11-14 18:32:21 +0100
committerMarc Cornellà <marc.cornella@live.com>2019-11-14 18:32:21 +0100
commite453731fc93419cb71661dd1f277965e3d07ff0e (patch)
tree75f892b56eb3ef772e7c34eb307654d33a4691f2 /plugins
parent24d83d1e8c84689d6fe0953f6fa6743d983fa07a (diff)
downloadzsh-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/spotify2
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