diff options
author | Monson Shao <holymonson@gmail.com> | 2020-04-03 22:13:36 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-03 16:13:36 +0200 |
commit | 6ad6fea52a7c59c12f95db974514891d2c111075 (patch) | |
tree | 4eaddc1fe264cd6f4a9a666d0053159edba0be89 | |
parent | 621de1e20bbe97dc6d867be47b8e797280bb079c (diff) | |
download | zsh-6ad6fea52a7c59c12f95db974514891d2c111075.tar.gz zsh-6ad6fea52a7c59c12f95db974514891d2c111075.tar.bz2 zsh-6ad6fea52a7c59c12f95db974514891d2c111075.zip |
gnu-utils: append make to cmds (#8794)
GNU "make" is installed as "gmake" by homebrew.
-rw-r--r-- | plugins/gnu-utils/gnu-utils.plugin.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/gnu-utils/gnu-utils.plugin.zsh b/plugins/gnu-utils/gnu-utils.plugin.zsh index 967b8b4ea..23e00c295 100644 --- a/plugins/gnu-utils/gnu-utils.plugin.zsh +++ b/plugins/gnu-utils/gnu-utils.plugin.zsh @@ -36,7 +36,7 @@ __gnu_utils() { gcmds+=('gfind' 'gxargs' 'glocate') # Not part of either coreutils or findutils, installed separately. - gcmds+=('gsed' 'gtar' 'gtime') + gcmds+=('gsed' 'gtar' 'gtime' 'gmake') for gcmd in "${gcmds[@]}"; do # Do nothing if the command isn't found |