WRAPPER: fixed the file migration in dir_prep

This commit is contained in:
Steam Deck User 2022-06-08 12:13:43 +02:00
parent 5fa4ec4f77
commit 72ee1c4938

View file

@ -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