Update NonSteamLaunchers.sh

didnt work
This commit is contained in:
moraroy 2023-05-06 15:06:33 -07:00 committed by GitHub
parent d1116c45d3
commit d20872297a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,25 +18,7 @@ check_for_updates() {
# Display a Zenity window to notify the user that a new version is available
zenity --info --text="A new version is available: $latest_version\nPlease download it from GitHub." --width=200 --height=100
else
# Set the username, repository, branch, and path to file
local username="moraroy"
local repository="NonSteamLaunchers-On-Steam-Deck"
local branch="main"
local path_to_file="NonSteamLaunchers.sh"
# Construct the raw URL
local raw_url="https://raw.githubusercontent.com/$username/$repository/$branch/$path_to_file"
# Download the latest version of the file from GitHub
curl -s "$raw_url" -o /tmp/latest_script.sh
# Compare the latest version of the file against the local version
if ! cmp -s "$0" /tmp/latest_script.sh; then
# Display a Zenity window to notify the user that a new version is available
zenity --info --text="A new version is available\nPlease download it from GitHub." --width=200 --height=100
else
echo "You are already running the latest version: $version"
fi
echo "You are already running the latest version: $version"
fi
}
@ -48,14 +30,6 @@ check_for_updates
test hi