mirror of
https://github.com/moraroy/NonSteamLaunchers-On-Steam-Deck.git
synced 2024-12-21 23:31:52 +01:00
Fix an issue with Rockstar Games Launcher never being able to be moved to the SD Card
This commit is contained in:
parent
494ae17d08
commit
06410bf6a0
@ -982,6 +982,15 @@ if [[ $options == "Move to SD Card" ]]; then
|
|||||||
ln -s "$new_dir/IndieGalaLauncher" "$original_dir"
|
ln -s "$new_dir/IndieGalaLauncher" "$original_dir"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Check if RockstarGamesLauncher is installed
|
||||||
|
if [[ -d "$HOME/.local/share/Steam/steamapps/compatdata/RockstarGamesLauncher" ]]; then
|
||||||
|
# RockstarGamesLauncher is installed
|
||||||
|
original_dir="$HOME/.local/share/Steam/steamapps/compatdata/RockstarGamesLauncher"
|
||||||
|
else
|
||||||
|
# Rockstar Games Launcher is not installed
|
||||||
|
original_dir=""
|
||||||
|
fi
|
||||||
|
|
||||||
# Check if the user selected to move RockstarGamesLauncher
|
# Check if the user selected to move RockstarGamesLauncher
|
||||||
if [[ $move_options == *"RockstarGamesLauncher"* ]] && [[ -n $original_dir ]]; then
|
if [[ $move_options == *"RockstarGamesLauncher"* ]] && [[ -n $original_dir ]]; then
|
||||||
# Move the Rockstar Games Launcher directory to the SD card
|
# Move the Rockstar Games Launcher directory to the SD card
|
||||||
|
Loading…
Reference in New Issue
Block a user