From 72ee1c49381821717bc252a80b9b9416b48a616a Mon Sep 17 00:00:00 2001 From: Steam Deck User Date: Wed, 8 Jun 2022 12:13:43 +0200 Subject: [PATCH] WRAPPER: fixed the file migration in dir_prep --- retrodeck.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/retrodeck.sh b/retrodeck.sh index 4873156f..e1e9e3dd 100644 --- a/retrodeck.sh +++ b/retrodeck.sh @@ -41,7 +41,7 @@ dir_prep() { if [ -d "$symlink.old" ]; then echo "Moving the data from $symlink.old to $real" #DEBUG - mv -fv "$symlink.old/*" "$real" + mv -fv "$symlink".old/* $real echo "Removing $symlink.old" #DEBUG rm -rf "$symlink.old" fi