From 86cfa193ad7c56ba82199e35faeee696b4561313 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Thu, 12 Sep 2013 20:49:04 -0400 Subject: [PATCH] bash-completion: fix typos in mkfs.bfs logic MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit There is no "bfs" command. Change this file to match the other mkfs files where we have a "mkfs." prefix. Reported-by: Michał Górny Signed-off-by: Mike Frysinger --- bash-completion/mkfs.bfs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bash-completion/mkfs.bfs b/bash-completion/mkfs.bfs index 8adbc60847..4f2923d4fa 100644 --- a/bash-completion/mkfs.bfs +++ b/bash-completion/mkfs.bfs @@ -1,4 +1,4 @@ -_bfs_module() +_mkfs.bfs_module() { local cur prev OPTS DEVS COMPREPLY=() @@ -28,4 +28,4 @@ _bfs_module() COMPREPLY=( $(compgen -W "$DEVS /path/to/file" -- $cur) ) return 0 } -complete -F _bfs_module bfs +complete -F _mkfs.bfs_module mkfs.bfs -- 2.47.3