Fix invalid mv option -r
This commit is contained in:
parent
f7ba286f57
commit
409939c2c7
|
@ -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"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue