diff --git a/plex-tools.sh b/plex-tools.sh index 49c739b..d5036b0 100644 --- a/plex-tools.sh +++ b/plex-tools.sh @@ -5,11 +5,13 @@ echo "Welcome to plex-tools wrapper utility!" script_delegation () { if [ -f "$1" ] ; then - case $1 in - token) source ./plex-token.sh ;; - esac + if [ "$1" == "token" ] + then + source ./plex-token.sh + fi else echo "'$1' is not a valid plex-tools command" fi } + script_delegation