From a0864f6d941310cdad4b4f280e8fb7896bedfefe Mon Sep 17 00:00:00 2001 From: Xargon Wan Date: Wed, 20 Apr 2022 18:56:04 +0900 Subject: [PATCH] Fixed logic error in move-roms tool --- tools/move-roms.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/move-roms.sh b/tools/move-roms.sh index 6128ab9a..77a835c8 100644 --- a/tools/move-roms.sh +++ b/tools/move-roms.sh @@ -1,8 +1,8 @@ #!/bin/bash -if [ -d ~/retrodeck/roms ] && [ -d ~/retrodeck/roms ] +if [ -d ~/retrodeck/roms ] && [ -d /run/media/mmcblk0p1/retrodeck/roms ] then # found both internal and sd folders - kdialog --title "RetroDECK" --warning "I found a roms folder both in internal and SD Card, in order to make this tool useful you should remove one of the two." + kdialog --title "RetroDECK" --warning "I found a roms folder both in internal and SD Card, in order to make this tool useful you should remove one of the two or merge them." exit 0 fi