mirror of
https://github.com/the-sane/lug-helper.git
synced 2024-12-29 06:34:20 +00:00
Fix default cmd line arg
This commit is contained in:
parent
b07428f52b
commit
9ea910fab7
@ -2629,7 +2629,7 @@ Usage: lug-helper <options>
|
|||||||
-p, --preflight-check Run system optimization checks
|
-p, --preflight-check Run system optimization checks
|
||||||
-i, --install [lutris|wine] Install Star Citizen (default: lutris)
|
-i, --install [lutris|wine] Install Star Citizen (default: lutris)
|
||||||
-m, --manage-runners Install or remove Lutris runners
|
-m, --manage-runners Install or remove Lutris runners
|
||||||
-k, --manage-dxvk Install or remove DXVK versions
|
-k, --manage-dxvk Install or remove Lutris DXVK versions
|
||||||
-u, --delete-user-folder Delete Star Citizen USER dir, preserve keybinds
|
-u, --delete-user-folder Delete Star Citizen USER dir, preserve keybinds
|
||||||
-s, --delete-shaders Delete Star Citizen shaders
|
-s, --delete-shaders Delete Star Citizen shaders
|
||||||
-c, --delete-dxvk-cache Delete Star Citizen dxvk cache file
|
-c, --delete-dxvk-cache Delete Star Citizen dxvk cache file
|
||||||
@ -2648,7 +2648,7 @@ Usage: lug-helper <options>
|
|||||||
;;
|
;;
|
||||||
--install | -i )
|
--install | -i )
|
||||||
install_method="$2"
|
install_method="$2"
|
||||||
if [ "$install_method" = "lutris" ] || [ "$install_method" = "LUTRIS" ]; then
|
if [ "$install_method" = "lutris" ] || [ "$install_method" = "LUTRIS" ] || [ "$install_method" = "" ]; then
|
||||||
cargs+=("install_game_lutris")
|
cargs+=("install_game_lutris")
|
||||||
elif [ "$install_method" = "wine" ] || [ "$install_method" = "WINE" ]; then
|
elif [ "$install_method" = "wine" ] || [ "$install_method" = "WINE" ]; then
|
||||||
cargs+=("install_game_wine")
|
cargs+=("install_game_wine")
|
||||||
|
Loading…
Reference in New Issue
Block a user