Missing semicolon

This commit is contained in:
Alex Malinovich 2018-03-09 00:10:53 -08:00
commit fa32df4497
No known key found for this signature in database
GPG key ID: F3327D1AA93CF5F0

View file

@ -431,7 +431,7 @@ if [ "${REDHAT}" = "yes" -a "${AUTOINSTALL}" = "yes" -a "${AUTOSTART}" = "no" ];
fi
if [ "${CHECKONLY}" = "yes" ]; then
if [ -n "${INSTALLED_VERSION}" ] && isNewerVersion "$FILE_VERSION" "$INSTALLED_VERSION" then
if [ -n "${INSTALLED_VERSION}" ] && isNewerVersion "$FILE_VERSION" "$INSTALLED_VERSION"; then
info "Your OS reports Plex $INSTALLED_VERSION installed, newer version is available (${FILE_VERSION})"
exit 7
elif [ -n "${INSTALLED_VERSION}" ]; then