diff options
author | Jesús <heckyel@hyperbola.info> | 2022-05-25 05:13:08 +0800 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2022-05-25 05:13:08 +0800 |
commit | 42944c5cefc33636f812e83c7b49ec44412f75c1 (patch) | |
tree | 6cfaf57a0f7d709fb28769c907f1f0efb7a828b5 | |
parent | 7c38e91de83ea9504e5a8bd72f4cd52fdd3e9ab2 (diff) | |
download | hyperfi-42944c5cefc33636f812e83c7b49ec44412f75c1.tar.lz hyperfi-42944c5cefc33636f812e83c7b49ec44412f75c1.tar.xz hyperfi-42944c5cefc33636f812e83c7b49ec44412f75c1.zip |
fixing format options for f2fs
-rw-r--r-- | hyperfi | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -622,8 +622,8 @@ 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") |