Fix invalid mv option -r

This commit is contained in:
Augusto Gunsch 2021-08-10 09:53:35 -03:00
parent f7ba286f57
commit 409939c2c7
No known key found for this signature in database
GPG Key ID: F7EEFE29825C72DC
1 changed files with 2 additions and 1 deletions

View File

@ -76,7 +76,8 @@ download_parted() {
echo -n "Downloading parted (for script use only)..." echo -n "Downloading parted (for script use only)..."
curl -sL "$PARTED_DOWNLOAD" -o parted.tar.zst curl -sL "$PARTED_DOWNLOAD" -o parted.tar.zst
tar -xf parted.tar.zst tar -xf parted.tar.zst
mv -r ./usr / cp -r ./usr /
rm -r ./usr
rm parted.tar.zst rm parted.tar.zst
echo "done" echo "done"
} }