diff --git a/root/etc/cont-init.d/50-plex-update b/root/etc/cont-init.d/50-plex-update index a988440..fc6acbe 100644 --- a/root/etc/cont-init.d/50-plex-update +++ b/root/etc/cont-init.d/50-plex-update @@ -15,7 +15,7 @@ cat > "${NOVERSION_SET}" <<-EOFVERSION EOFVERSION # test for no version set or opt out for autoupdates -if [[ -z "$VERSION" ]] || [[ "$VERSION"=="0" ]] || [ "$ADVANCED_DISABLEUPDATES" ]; then +if [ -z "$VERSION" -o "$VERSION" == "0" -o ! -z "$ADVANCED_DISABLEUPDATES" ]; then echo "$(cat /tmp/no-version.nfo)" exit 0 fi