Merge pull request #124 from exorcist-gif/master

fixing format options for f2fs
This commit is contained in:
MatMoul 2020-07-16 00:44:24 +02:00 committed by GitHub
commit 3c115abf4e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

6
archfi
View file

@ -626,12 +626,12 @@ formatdevice(){
;;
f2fs)
fspkgs="${fspkgs[@]} f2fs-tools"
echo "mkfs.f2fs $2"
mkfs.f2fs $2
echo "mkfs.f2fs -f $2"
mkfs.f2fs -f $2
;;
jfs)
fspkgs="${fspkgs[@]} jfsutils"
echo "mkfs.xfs -f ${2}"
echo "mkfs.jfs -f ${2}"
mkfs.jfs -f ${2}
;;
reiserfs)