From: Boris Egorov Date: Tue, 2 Jun 2015 17:59:03 +0000 (+0600) Subject: bash-completion: remove unused variables [shellcheck] X-Git-Tag: v2.27-rc1~166 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5e3da11b3e6c937c11953e2529b849b79ccac88e;p=thirdparty%2Futil-linux.git bash-completion: remove unused variables [shellcheck] Fix shellcheck SC2034 warnings. Signed-off-by: Boris Egorov --- diff --git a/bash-completion/addpart b/bash-completion/addpart index e9ed793e22..3179639088 100644 --- a/bash-completion/addpart +++ b/bash-completion/addpart @@ -1,6 +1,6 @@ _addpart_module() { - local cur prev + local cur COMPREPLY=() cur="${COMP_WORDS[COMP_CWORD]}" case $COMP_CWORD in diff --git a/bash-completion/fsck b/bash-completion/fsck index d61b37f42b..301bb5d00e 100644 --- a/bash-completion/fsck +++ b/bash-completion/fsck @@ -1,6 +1,6 @@ _fsck_module() { - local cur prev OPTS DEVS + local cur prev OPTS COMPREPLY=() cur="${COMP_WORDS[COMP_CWORD]}" prev="${COMP_WORDS[COMP_CWORD-1]}" diff --git a/bash-completion/fsck.minix b/bash-completion/fsck.minix index 4ed511011c..b2b2860da0 100644 --- a/bash-completion/fsck.minix +++ b/bash-completion/fsck.minix @@ -1,6 +1,6 @@ _fsck.minix_module() { - local cur prev OPTS DEVS + local cur prev OPTS COMPREPLY=() cur="${COMP_WORDS[COMP_CWORD]}" prev="${COMP_WORDS[COMP_CWORD-1]}" diff --git a/bash-completion/lsblk b/bash-completion/lsblk index 1692dade8b..e32f371001 100644 --- a/bash-completion/lsblk +++ b/bash-completion/lsblk @@ -81,7 +81,6 @@ _lsblk_module() return 0 ;; esac - local DEVS COMPREPLY=( $(compgen -W "$($1 -pnro name)" -- $cur) ) return 0 } diff --git a/bash-completion/mkfs b/bash-completion/mkfs index 4edc6f0ddc..a27874714e 100644 --- a/bash-completion/mkfs +++ b/bash-completion/mkfs @@ -1,6 +1,6 @@ _mkfs_module() { - local cur prev OPTS DEVS + local cur prev OPTS COMPREPLY=() cur="${COMP_WORDS[COMP_CWORD]}" prev="${COMP_WORDS[COMP_CWORD-1]}" diff --git a/bash-completion/mkfs.bfs b/bash-completion/mkfs.bfs index 1bd67a0681..75458bb09f 100644 --- a/bash-completion/mkfs.bfs +++ b/bash-completion/mkfs.bfs @@ -1,6 +1,6 @@ _mkfs.bfs_module() { - local cur prev OPTS DEVS + local cur prev OPTS COMPREPLY=() cur="${COMP_WORDS[COMP_CWORD]}" prev="${COMP_WORDS[COMP_CWORD-1]}" diff --git a/bash-completion/mkfs.minix b/bash-completion/mkfs.minix index c84a23761c..3a3602e6e5 100644 --- a/bash-completion/mkfs.minix +++ b/bash-completion/mkfs.minix @@ -28,7 +28,6 @@ _mkfs.minix_module() return 0 ;; esac - local DEVS COMPREPLY=( $(compgen -W "$(lsblk -pnro name)" -- $cur) ) return 0 }