mirror of
https://github.com/the-sane/lug-helper.git
synced 2024-12-28 15:44:20 +00:00
ignoring .sha512sum files in runner release pages
This commit is contained in:
parent
6533cf98bd
commit
7f3d84a8bc
@ -987,13 +987,18 @@ runner_select_install() {
|
|||||||
*.tar.xz)
|
*.tar.xz)
|
||||||
runner_name="$(basename "${runner_versions[i]}" .tar.xz)"
|
runner_name="$(basename "${runner_versions[i]}" .tar.xz)"
|
||||||
;;
|
;;
|
||||||
|
*.sha512sum)
|
||||||
|
runner_name="ignore"
|
||||||
|
;;
|
||||||
*)
|
*)
|
||||||
debug_print exit "Unknown archive filetype in runner_select_install function. Aborting."
|
debug_print exit "Unknown archive filetype in runner_select_install function. Aborting."
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
# Add the runner names to the menu
|
# Add the runner names to the menu
|
||||||
if [ -d "$runners_dir/$runner_name" ]; then
|
if [ "$runner_name" = "ignore" ]; then
|
||||||
|
debug_print continue "Ignoring .sha512sum file."
|
||||||
|
elif [ -d "$runners_dir/$runner_name" ]; then
|
||||||
menu_options+=("$runner_name [installed]")
|
menu_options+=("$runner_name [installed]")
|
||||||
else
|
else
|
||||||
menu_options+=("$runner_name")
|
menu_options+=("$runner_name")
|
||||||
@ -1264,7 +1269,7 @@ get_latest_release() {
|
|||||||
|
|
||||||
# Check if a new Verison of the script is available
|
# Check if a new Verison of the script is available
|
||||||
repo="the-sane/lug-helper"
|
repo="the-sane/lug-helper"
|
||||||
current_version="v1.9"
|
current_version="v1.9.1"
|
||||||
latest_version=$(get_latest_release "$repo")
|
latest_version=$(get_latest_release "$repo")
|
||||||
|
|
||||||
if [ "$latest_version" != "$current_version" ]; then
|
if [ "$latest_version" != "$current_version" ]; then
|
||||||
|
Loading…
Reference in New Issue
Block a user