disable aliases before calling zcompile

This commit is contained in:
romkatv 2020-05-12 08:34:01 +02:00
parent f43d8b9e0e
commit d075b5a5cb

View file

@ -1134,7 +1134,7 @@ cd powerlevel10k-1.8.0
rm deps/libgit2-*.tar.gz
)
for file in *.zsh-theme internal/*.zsh gitstatus/*.zsh gitstatus/install; do
zsh -fc "zcompile -R -- $file.zwc $file"
zsh -fc "emulate zsh -o no_aliases && zcompile -R -- $file.zwc $file"
done
```