Fix ntfsresize command

This commit is contained in:
natemaia 2019-04-13 17:11:56 -07:00
parent e60af8d0f1
commit ae86ae676c

View File

@ -5,7 +5,7 @@
# Some ideas and code reworked from other resources
# AIF, Cnichi, Calamares, Arch Wiki.. Credit where credit is due
VER="2.0.32" # installer version
VER="2.0.33" # installer version
DIST="ArchLabs" # linux distributor
MNT="/mnt" # install mountpoint
ANS="/tmp/ans" # dialog answer file
@ -951,8 +951,8 @@ part_resize()
errshow "resize2fs -f $part ${size}K" || return 1
;;
ntfs)
ntfsresize -f -s ${size}K "$part" 2>$ERR
errshow "ntfsresize -f -s ${size}K $part" || return 1
ntfsresize -fc -s ${size}k "$part" 2>$ERR
errshow "ntfsresize -f -s ${size}k $part" || return 1
;;
esac
sleep 0.5