1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-24 17:00:47 +00:00

osx: fix exit on unknown command in spotify function (#8375)

This commit is contained in:
Péter HÉJA 2019-11-14 18:32:21 +01:00 committed by Marc Cornellà
parent 24d83d1e8c
commit e453731fc9

View file

@ -470,7 +470,7 @@ while [ $# -gt 0 ]; do
break ;;
* )
showHelp;
exit 1;
break;
esac
done