Update NonSteamLaunchers.sh

This commit is contained in:
Roy 2025-02-06 15:27:31 -08:00 committed by GitHub
parent 55e40bfff8
commit 22fde21e9c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1834,8 +1834,10 @@ function install_launcher {
eval "$post_install_command"
fi
# Wait for the installation process to complete
wait
# Wait for the installation process to complete (EXCEPT GOG)
if [ "$launcher_name" != "GOG Galaxy" ]; then
wait
fi
fi
}