From b23fb57850a4d71b1ba22a895dea5d266764eff2 Mon Sep 17 00:00:00 2001 From: Gardouille Date: Tue, 8 Oct 2019 00:10:14 +0200 Subject: [PATCH] Disable exit on unknown file type due to error MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The last game_id is tested twice and exit on "symbolic" link without reason… --- games/save.game.steam | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/games/save.game.steam b/games/save.game.steam index 968997e..1b7637f 100755 --- a/games/save.game.steam +++ b/games/save.game.steam @@ -154,7 +154,8 @@ for game_id in ${steam_games}; do ;; *) printf '\e[1;35m%-6s\e[m\n' "Data of ${game_id} − ${local_game_path} are not managed. Type: ${local_game_path_type}. Abort" - exit 3 + # TODO : why test twice the last game_id and exit on symbolic link… + #exit 3 ;; esac