diff options
author | Roman Perepelitsa <roman.perepelitsa@gmail.com> | 2020-11-26 13:17:01 +0300 |
---|---|---|
committer | Roman Perepelitsa <roman.perepelitsa@gmail.com> | 2020-11-26 13:17:01 +0300 |
commit | ff79e502adf8eeec0fa775087f42d9679b10c5eb (patch) | |
tree | 318c9b964b1bce920e46ff8aa5583a5adf200e48 /Makefile | |
parent | bc3158cba5458face7dc56bcf22d9e82a266b39e (diff) |
don't allow overriding the path to zshv1.14.3
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,7 +1,7 @@ -ZSH ?= $(shell command -v zsh 2> /dev/null) +ZSH := $(shell command -v zsh 2> /dev/null) all: pkg: - cd gitstatus && $(MAKE) ZSH=$(ZSH) pkg && cd .. + cd gitstatus && $(MAKE) pkg && cd .. $(or $(ZSH),:) -fc 'for f in *.zsh-theme internal/*.zsh; do zcompile -R -- $$f.zwc $$f || exit; done' |