Correct comments and informations

This commit is contained in:
Jeremy Gardais 2019-10-13 16:38:47 +02:00
parent 0c8fbeb5f5
commit 6ee8a2a951
1 changed files with 4 additions and 4 deletions

View File

@ -15,8 +15,8 @@
## 2. If a directory doesn't exist, check if a remote one is ## 2. If a directory doesn't exist, check if a remote one is
## available and symlink it. ## available and symlink it.
## ##
## KISS: Only manage save directories from Steam userdata. For other ## KISS: Only manage save directories from XDG. For other paths (Steam, home,…)
## paths (Steam,…) check other scripts. ## check other scripts.
# }}} # }}}
# Vars {{{ # Vars {{{
@ -159,7 +159,7 @@ for game_name in ${xdg_config_games}; do
;; ;;
## Data can't be managed ## Data can't be managed
*) *)
printf '\e[1;35m%-6s\e[m\n' "Data of ${game_name} (userdata) ${local_game_path} are not managed. Type: ${local_game_path_type}. Abort" printf '\e[1;35m%-6s\e[m\n' "Data of ${game_name} (XDG CONFIG) ${local_game_path} are not managed. Type: ${local_game_path_type}. Abort"
exit 3 exit 3
;; ;;
esac esac
@ -190,7 +190,7 @@ for game_name in ${xdg_data_games}; do
;; ;;
## Data can't be managed ## Data can't be managed
*) *)
printf '\e[1;35m%-6s\e[m\n' "Data of ${game_name} (userdata) ${local_game_path} are not managed. Type: ${local_game_path_type}. Abort" printf '\e[1;35m%-6s\e[m\n' "Data of ${game_name} (XDG DATA) ${local_game_path} are not managed. Type: ${local_game_path_type}. Abort"
exit 3 exit 3
;; ;;
esac esac