We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6dc05aa commit da12aa2Copy full SHA for da12aa2
1 file changed
root/etc/cont-init.d/50-plex-update
@@ -15,7 +15,7 @@ cat > "${NOVERSION_SET}" <<-EOFVERSION
15
EOFVERSION
16
17
# test for no version set or opt out for autoupdates
18
-if [[ -z "$VERSION" ]] || [[ "$VERSION"=="0" ]] || [ "$ADVANCED_DISABLEUPDATES" ]; then
+if [ -z "$VERSION" -o "$VERSION" == "0" -o ! -z "$ADVANCED_DISABLEUPDATES" ]; then
19
echo "$(cat /tmp/no-version.nfo)"
20
exit 0
21
fi
0 commit comments