diff options
author | Luke Shumaker <lukeshu@parabola.nu> | 2017-03-28 18:48:29 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@parabola.nu> | 2017-05-04 21:09:14 -0400 |
commit | 168341e04931b1203740870e57966ce0f1d19e0d (patch) | |
tree | edee1932dc765b04962ce5d087312f4dfb0bd116 /bash_completion.in | |
parent | 368a6d2a37a8eb88da4a5a393b1f685c240835d5 (diff) | |
download | devtools32-168341e04931b1203740870e57966ce0f1d19e0d.tar.xz |
Make purely stylistic changes to make shellcheck happier.
These are purely stylistic changes that make shellcheck complain less.
This does NOT include things like quoting currently unquoted variables.
Diffstat (limited to 'bash_completion.in')
-rw-r--r-- | bash_completion.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bash_completion.in b/bash_completion.in index f5a3077..f0a6bd0 100644 --- a/bash_completion.in +++ b/bash_completion.in @@ -15,7 +15,7 @@ _devtools_compgen() { _archco_pkg() { _devtools_compgen "$( - \pacman -$1 + command pacman "-$1" )" } |