Disable exit on unknown file type due to error
The last game_id is tested twice and exit on "symbolic" link without reason…
This commit is contained in:
parent
cc1473e28c
commit
b23fb57850
|
@ -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"
|
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
|
esac
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue