From 7d31a61235210cbd6c7f48162afd2740deb40371 Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Tue, 5 Apr 2022 17:06:46 +0200 Subject: [PATCH] Fixed a small issue in create_dummy_game_files.sh --- tools/create_dummy_game_files.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/create_dummy_game_files.sh b/tools/create_dummy_game_files.sh index f7dfe735f..121f3463b 100755 --- a/tools/create_dummy_game_files.sh +++ b/tools/create_dummy_game_files.sh @@ -17,7 +17,7 @@ if [ ! -f ./systems.txt ]; then exit fi -for folder in $(cat systems.txt | cut -f1 -d":"); do +for folder in $(cat systems.txt | cut -f1 -d":" | sed s/"(custom system)"/""/g); do echo Creating dummy file for system ${folder} touch ${folder}/dummy$(grep "^\." ${folder}/systeminfo.txt | cut -f1 -d " ") done