1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-02 10:01:11 +02:00

unposted: _zcat: support macOS

This commit is contained in:
Jun-ichi Takimoto 2018-11-15 21:02:22 +09:00
parent e258e7d251
commit 35afea0772
2 changed files with 3 additions and 1 deletions

View file

@ -1,5 +1,7 @@
2018-11-15 Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>
* unposted: Completion/Unix/Command/_zcat: support macOS
* Ivan Tkachenko: 43823: Src/Modules/stat.c: remove unnecessary
metafy() in stattimeprint()

View file

@ -1,6 +1,6 @@
#compdef zcat
if _pick_variant gz='(GNU|NetBSD)' unix --license; then
if _pick_variant gz='(GNU|NetBSD|Apple)' unix --license; then
_gzip "$@"
else
_compress "$@"