1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-03 06:04:53 +00:00

Fix du(1) completion

PR:		200768
Obtained from:	ZSH upstream
This commit is contained in:
Baptiste Daroussin 2015-06-15 12:36:13 +00:00
parent e9073fdf78
commit 641184f77f
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=389703
2 changed files with 10 additions and 1 deletions

View File

@ -3,7 +3,7 @@
PORTNAME= zsh
PORTVERSION= 5.0.8
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= shells
MASTER_SITES= http://www.zsh.org/pub/ \
http://www.zsh.org/pub/:doc \

View File

@ -0,0 +1,9 @@
--- Completion/Unix/Command/_du.orig 2015-05-03 17:57:18 UTC
+++ Completion/Unix/Command/_du
@@ -74,5 +74,5 @@ else
do
[[ $OSTYPE = $~pattern ]] && args+=( $arg )
done
- _arguments -s -A "-*" $args
+ _arguments -s -A "-*" $args '*:file:_files'
fi