mirror of
https://github.com/the-sane/lug-helper.git
synced 2025-01-15 13:50:37 +00:00
Compare commits
No commits in common. "1561e1a9f6f233c84a8cfc57334ec93eb3ee30b4" and "c1af0383f262eae1dd6c69b55a826d0490a100e6" have entirely different histories.
1561e1a9f6
...
c1af0383f2
@ -61,10 +61,10 @@ if [ ! -x "$(command -v curl)" ]; then
|
|||||||
notify-send "lug-helper" "The required package 'curl' was not found on this system.\n" --icon=dialog-warning
|
notify-send "lug-helper" "The required package 'curl' was not found on this system.\n" --icon=dialog-warning
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
if [ ! -x "$(command -v mktemp)" ] || [ ! -x "$(command -v basename)" ] || [ ! -x "$(command -v sort)" ]; then
|
if [ ! -x "$(command -v mktemp)" ] || [ ! -x "$(command -v basename)" ]; then
|
||||||
# Print to stderr and also try warning the user through notify-send
|
# Print to stderr and also try warning the user through notify-send
|
||||||
printf "lug-helper.sh: One or more required packages were not found on this system.\nPlease check that the following packages are installed:\n- mktemp (part of gnu coreutils)\n- basename (part of gnu coreutils)\n- sort (part of gnu coreutils)\n" 1>&2
|
printf "lug-helper.sh: One or more required packages were not found on this system.\nPlease check that the following packages are installed:\n- mktemp (part of gnu coreutils)\n- basename (part of gnu coreutils)\n" 1>&2
|
||||||
notify-send "lug-helper" "One or more required packages were not found on this system.\nPlease check that the following packages are installed:\n- mktemp (part of gnu coreutils)\n- basename (part of gnu coreutils)\n- sort (part of gnu coreutils)\n" --icon=dialog-warning
|
notify-send "lug-helper" "One or more required packages were not found on this system.\nPlease check that the following packages are installed:\n- mktemp (part of gnu coreutils)\n- basename (part of gnu coreutils)\n" --icon=dialog-warning
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@ -147,7 +147,7 @@ fi
|
|||||||
# Github repo and script version info
|
# Github repo and script version info
|
||||||
repo="starcitizen-lug/lug-helper"
|
repo="starcitizen-lug/lug-helper"
|
||||||
releases_url="https://github.com/$repo/releases"
|
releases_url="https://github.com/$repo/releases"
|
||||||
current_version="v1.12"
|
current_version="v1.11.2"
|
||||||
|
|
||||||
############################################################################
|
############################################################################
|
||||||
############################################################################
|
############################################################################
|
||||||
@ -1497,8 +1497,7 @@ live_or_ptu="$live_dir"
|
|||||||
# Check if a newer verison of the script is available
|
# Check if a newer verison of the script is available
|
||||||
latest_version="$(get_latest_release "$repo")"
|
latest_version="$(get_latest_release "$repo")"
|
||||||
|
|
||||||
if [ "$latest_version" != "$current_version" ] &&
|
if [ "$latest_version" != "$current_version" ]; then
|
||||||
[ "$current_version" = "$(printf "$current_version\n$latest_version" | sort -V | head -n1)" ]; then
|
|
||||||
if [ "$use_zenity" -eq 1 ]; then
|
if [ "$use_zenity" -eq 1 ]; then
|
||||||
releases_url_formatted="<a href='$releases_url'>$releases_url</a>"
|
releases_url_formatted="<a href='$releases_url'>$releases_url</a>"
|
||||||
else
|
else
|
||||||
|
Loading…
x
Reference in New Issue
Block a user