diff options
Diffstat (limited to 'Completion/Unix/Command/_install')
-rw-r--r-- | Completion/Unix/Command/_install | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Completion/Unix/Command/_install b/Completion/Unix/Command/_install index 25d9dfcaa..f5056b5d0 100644 --- a/Completion/Unix/Command/_install +++ b/Completion/Unix/Command/_install @@ -48,13 +48,13 @@ else '-L+[use user/group database files from specified directory]: :_directories' '-l[fall back to system files if user/group not found in -L directory]' ) - [[ $OSTYPE == netbsd* ]] && { - args+=( - '-a+[specify shell command to run on files after install]:shell command' - '-r[use temporary files to perform safe copy]' - '-S+[specify arguments to pass to strip program]:arguments to strip program' - ) - # NetBSD has no -v for some reason + [[ $OSTYPE == netbsd* ]] && args+=( + '-a+[specify shell command to run on files after install]:shell command' + '-r[use temporary files to perform safe copy]' + '-S+[specify arguments to pass to strip program]:arguments to strip program' + ) + [[ $OSTYPE == (net|open)bsd* ]] && { + # (Net|Open)BSD has no -v for some reason args=( ${args##((#s)|*\))(\*|)-v*} ) } [[ $OSTYPE == openbsd* ]] && args+=( |