From 34873a1fa7d4917cd4387bee2a53ef4a4b085c0e Mon Sep 17 00:00:00 2001 From: IronicBadger Date: Fri, 13 Nov 2015 11:19:07 +0000 Subject: [PATCH] Fix typos / spelling --- init/30_update_plex.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/init/30_update_plex.sh b/init/30_update_plex.sh index 980a9bb..2804517 100644 --- a/init/30_update_plex.sh +++ b/init/30_update_plex.sh @@ -1,24 +1,24 @@ #!/bin/bash export DEBIAN_FRONTEND=noninteractive -#The following error is not a error. +#The following error is not an error. INSTALLED=$(dpkg-query -W -f='${Version}' plexmediaserver) [ "$PLEXPASS" ] && echo "PLEXPASS is deprecated, please use VERSION" if [[ -z $VERSION && "$PLEXPASS" == "1" || $VERSION = "plexpass" ]]; then VERSION=$(curl -s https://tools.linuxserver.io/latest-plexpass.json | grep "version" | cut -d '"' -f 4) - echo "Useing version: $VERSION from Plexpass latest" + echo "Using version: $VERSION from Plexpass latest" elif [[ $VERSION = "latest" || -z $VERSION ]]; then VERSION=$(curl -s https://tools.linuxserver.io/latest-plex.json| grep "version" | cut -d '"' -f 4) - echo "Useing version: $VERSION from Public latest" + echo "Using version: $VERSION from Public latest" else - echo "Useing version: $VERSION from Manual" + echo "Using version: $VERSION from Manual" fi last=130 if [[ "$VERSION" != "$INSTALLED" ]]; then - echo "Upgradeing from version: $INSTALLED to version: $VERSION" + echo "Upgrading from version: $INSTALLED to version: $VERSION" while [[ $last -ne "0" ]]; do rm -f /tmp/plexmediaserver_*.deb wget -P /tmp "https://downloads.plex.tv/plex-media-server/$VERSION/plexmediaserver_${VERSION}_amd64.deb"