Fix parted installation

This commit is contained in:
Augusto Gunsch 2021-08-10 09:49:42 -03:00
parent 4c5df382fc
commit f7ba286f57
No known key found for this signature in database
GPG Key ID: F7EEFE29825C72DC
1 changed files with 5 additions and 3 deletions

View File

@ -68,14 +68,16 @@ download_fzf() {
curl -sL "$FZF_DOWNLOAD" -o fzf.tar.gz curl -sL "$FZF_DOWNLOAD" -o fzf.tar.gz
tar -xf fzf.tar.gz tar -xf fzf.tar.gz
mv ./fzf /usr/bin/fzf mv ./fzf /usr/bin/fzf
rm fzf.tar.gz
echo "done" echo "done"
} }
download_parted() { 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.xz curl -sL "$PARTED_DOWNLOAD" -o parted.tar.zst
tar -xf parted.tar.xz tar -xf parted.tar.zst
cp ./usr/bin/parted /usr/bin/parted mv -r ./usr /
rm parted.tar.zst
echo "done" echo "done"
} }