1
0
Fork 0
mirror of https://github.com/romkatv/powerlevel10k.git synced 2024-11-22 20:30:07 +00:00

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 rm deps/libgit2-*.tar.gz
) )
for file in *.zsh-theme internal/*.zsh gitstatus/*.zsh gitstatus/install; do 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 done
``` ```