diff options
Diffstat (limited to 'completions/mysql')
-rw-r--r-- | completions/mysql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/completions/mysql b/completions/mysql index 4ba049f..f1b9a9b 100644 --- a/completions/mysql +++ b/completions/mysql @@ -24,7 +24,7 @@ _comp_cmd_mysql() # Prefer `mysqlshow` in the same dir as the command local pathcmd - pathcmd=$(type -P "$1") && local PATH=${pathcmd%/*}:$PATH + pathcmd=$(type -P -- "$1") && local PATH=${pathcmd%/*}:$PATH local noargopts='!(-*|*[uDhSPeI]*)' # shellcheck disable=SC2254 |