mirror of
https://github.com/the-sane/lug-helper.git
synced 2025-01-15 10:30:35 +00:00
Compare commits
2 Commits
10c5438189
...
28051a135a
Author | SHA1 | Date | |
---|---|---|---|
|
28051a135a | ||
|
44b1332782 |
@ -132,6 +132,7 @@ dxvk_dir="$data_dir/lutris/runtime/dxvk"
|
||||
dxvk_sources=(
|
||||
"Sporif Async" "https://api.github.com/repos/Sporif/dxvk-async/releases"
|
||||
"/dev/null" "https://api.github.com/repos/gort818/dxvk/releases"
|
||||
"gnusenpai" "https://api.github.com/repos/gnusenpai/dxvk/releases"
|
||||
)
|
||||
|
||||
# Set a maximum number of versions to display from each download url
|
||||
@ -169,7 +170,7 @@ lug_wiki="https://github.com/starcitizen-lug/information-howtos/wiki"
|
||||
# Github repo and script version info
|
||||
repo="starcitizen-lug/lug-helper"
|
||||
releases_url="https://github.com/$repo/releases"
|
||||
current_version="v1.18"
|
||||
current_version="v1.19"
|
||||
|
||||
############################################################################
|
||||
############################################################################
|
||||
@ -1030,6 +1031,9 @@ download_install() {
|
||||
*.tar.xz)
|
||||
download_name="$(basename "$download_file" .tar.xz)"
|
||||
;;
|
||||
*.tar.zst)
|
||||
download_name="$(basename "$download_file" .tar.zst)"
|
||||
;;
|
||||
*)
|
||||
debug_print exit "Unknown archive filetype in download_install function. Aborting."
|
||||
;;
|
||||
@ -1232,6 +1236,9 @@ download_select_install() {
|
||||
*.tar.xz)
|
||||
download_name="$(basename "${download_versions[i]}" .tar.xz)"
|
||||
;;
|
||||
*.tar.zst)
|
||||
download_name="$(basename "${download_versions[i]}" .tar.zst)"
|
||||
;;
|
||||
*)
|
||||
debug_print exit "Unknown archive filetype in download_select_install function. Aborting."
|
||||
;;
|
||||
|
Loading…
x
Reference in New Issue
Block a user