From 6294d93e10f06e64e399736b1a85d8803fbc3a22 Mon Sep 17 00:00:00 2001 From: Alex Malinovich Date: Sat, 4 Mar 2017 17:09:45 -0800 Subject: [PATCH] Remove trailing whitespace --- plexupdate.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plexupdate.sh b/plexupdate.sh index e87c854..c49cfcf 100755 --- a/plexupdate.sh +++ b/plexupdate.sh @@ -324,7 +324,7 @@ if [ "${CHECKUPDATE}" = "yes" -a "${AUTOUPDATE}" = "no" ]; then for filename in $PLEXUPDATE_FILES; do [ -f "$filename" ] || error "Update check failed. '$filename' could not be found" - REMOTE_SHA=$(getRemoteSHA "$UPSTREAM_GIT_URL/$filename") || error "Update check failed. Unable to fetch '$UPSTREAM_GIT_URL/$filename'." + REMOTE_SHA=$(getRemoteSHA "$UPSTREAM_GIT_URL/$filename") || error "Update check failed. Unable to fetch '$UPSTREAM_GIT_URL/$filename'." LOCAL_SHA=$(getLocalSHA "$filename") if [ "$REMOTE_SHA" != "$LOCAL_SHA" ]; then info "Newer version of this script is available at https://github.com/${GIT_OWNER:-mrworf}/plexupdate"