mirror of
https://github.com/ublue-os/bazzite.git
synced 2025-01-06 00:58:16 +00:00
fix(deck): Skip the first update in gaming mode on new installs
This commit is contained in:
parent
e18ebd7f49
commit
5eede45788
@ -26,7 +26,10 @@ done
|
||||
|
||||
|
||||
if command -v ublue-update > /dev/null; then
|
||||
if [ -n "${CHECK}" ]; then
|
||||
if [ ! -f '/etc/gamemode-update-check' ]; then
|
||||
touch /etc/gamemode-update-check
|
||||
exit 7 # Skip the first update to simplify new installs.
|
||||
elif [ -n "${CHECK}" ]; then
|
||||
if [ -f '/tmp/upgrade-installed' ]; then
|
||||
exit 7 # Upgrade already installed
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user