mirror of
https://github.com/linuxserver/docker-plex.git
synced 2026-02-19 20:03:03 +08:00
improve logic on test for no update
This commit is contained in:
parent
6dc05aafbc
commit
da12aa2d63
@ -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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user