From 409939c2c71c8898f2d7fcec3bafc92425dc12c2 Mon Sep 17 00:00:00 2001 From: Augusto Gunsch Date: Tue, 10 Aug 2021 09:53:35 -0300 Subject: [PATCH] Fix invalid mv option -r --- install.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/install.sh b/install.sh index c2fa1e0..ae79724 100755 --- a/install.sh +++ b/install.sh @@ -76,7 +76,8 @@ download_parted() { echo -n "Downloading parted (for script use only)..." curl -sL "$PARTED_DOWNLOAD" -o parted.tar.zst tar -xf parted.tar.zst - mv -r ./usr / + cp -r ./usr / + rm -r ./usr rm parted.tar.zst echo "done" }