aboutsummaryrefslogtreecommitdiffstats
path: root/bash-completion
diff options
context:
space:
mode:
authorChristian Goeschel Ndjomouo <cgoesc2@wgu.edu>2025-10-31 13:14:53 -0400
committerChristian Goeschel Ndjomouo <cgoesc2@wgu.edu>2025-10-31 13:14:53 -0400
commitfdc77706a249c3247ed91d0469617e2d354e2fd9 (patch)
treee6bd5f403d3d0551c879e3b497b583598babe3b8 /bash-completion
parent72b8c115c7ec716eb7df893bc60845da04c698e4 (diff)
downloadutil-linux-fdc77706a249c3247ed91d0469617e2d354e2fd9.tar.gz
bash-completion: (mkfs.minix) add missing --lock
Signed-off-by: Christian Goeschel Ndjomouo <cgoesc2@wgu.edu>
Diffstat (limited to 'bash-completion')
-rw-r--r--bash-completion/mkfs.minix2
1 files changed, 1 insertions, 1 deletions
diff --git a/bash-completion/mkfs.minix b/bash-completion/mkfs.minix
index e7a26cd0a7..c43fef82dd 100644
--- a/bash-completion/mkfs.minix
+++ b/bash-completion/mkfs.minix
@@ -21,7 +21,7 @@ _mkfs.minix_module()
esac
case $cur in
-*)
- OPTS="--namelength --inodes --check --badblocks --help --version -1 -2 -3"
+ OPTS="--namelength --inodes --check --badblocks --lock --help --version -1 -2 -3"
COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) )
return 0
;;