summary refs log tree commit diff
path: root/Completion/Unix/Command/_timeout
diff options
context:
space:
mode:
authorOliver Kiddle <opk@zsh.org>2021-05-22 00:00:29 +0200
committerOliver Kiddle <opk@zsh.org>2021-05-22 00:05:54 +0200
commit0c14732cf740149aa906017938624db2e864f08e (patch)
tree23e05c877d65ae7a0dd26b7d3cfb3f0685f54ca1 /Completion/Unix/Command/_timeout
parent891d361572f6db01434c21adb9b699d6a82dba80 (diff)
downloadzsh-0c14732cf740149aa906017938624db2e864f08e.tar.gz
zsh-0c14732cf740149aa906017938624db2e864f08e.tar.xz
zsh-0c14732cf740149aa906017938624db2e864f08e.zip
48897: completion updates for DragonFly 6.0 and OpenBSD 6.9
Diffstat (limited to 'Completion/Unix/Command/_timeout')
-rw-r--r--Completion/Unix/Command/_timeout4
1 files changed, 2 insertions, 2 deletions
diff --git a/Completion/Unix/Command/_timeout b/Completion/Unix/Command/_timeout
index d0ff085bb..223059e4d 100644
--- a/Completion/Unix/Command/_timeout
+++ b/Completion/Unix/Command/_timeout
@@ -2,8 +2,8 @@
 
 local args
 
-if [[ $service = g* || $OSTYPE != *bsd* ]]; then
-  # GNU coreutils as opposed to Free/NetBSD implementation
+if [[ $service = g* || $OSTYPE != *(freebsd|netbsd)* ]]; then
+  # GNU coreutils or DFly as opposed to Free/NetBSD implementation
   args=(
     '(-v --verbose)'{-v,--verbose}'[indicate when signal is sent upon timeout]'
     '(- *)--help[display usage information]'