From 7d52d4136741a2e53f848a63a69481647fdb6b85 Mon Sep 17 00:00:00 2001 From: adphi Date: Mon, 23 Apr 2018 11:42:44 +0200 Subject: [PATCH] Fix missing escape character in /home/adphi/.oh-my-zsh/plugins/git /home/adphi/.oh-my-zsh/functions /home/adphi/.oh-my-zsh/completions /usr/local/share/zsh/site-functions /usr/share/zsh/vendor-functions /usr/share/zsh/vendor-completions /usr/share/zsh/functions/Calendar /usr/share/zsh/functions/Chpwd /usr/share/zsh/functions/Completion /usr/share/zsh/functions/Completion/AIX /usr/share/zsh/functions/Completion/BSD /usr/share/zsh/functions/Completion/Base /usr/share/zsh/functions/Completion/Cygwin /usr/share/zsh/functions/Completion/Darwin /usr/share/zsh/functions/Completion/Debian /usr/share/zsh/functions/Completion/Linux /usr/share/zsh/functions/Completion/Mandriva /usr/share/zsh/functions/Completion/Redhat /usr/share/zsh/functions/Completion/Solaris /usr/share/zsh/functions/Completion/Unix /usr/share/zsh/functions/Completion/X /usr/share/zsh/functions/Completion/Zsh /usr/share/zsh/functions/Completion/openSUSE /usr/share/zsh/functions/Exceptions /usr/share/zsh/functions/MIME /usr/share/zsh/functions/Misc /usr/share/zsh/functions/Newuser /usr/share/zsh/functions/Prompts /usr/share/zsh/functions/TCP /usr/share/zsh/functions/VCS_Info /usr/share/zsh/functions/VCS_Info/Backends /usr/share/zsh/functions/Zftp /usr/share/zsh/functions/Zle --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index d1c765a..da33808 100644 --- a/install.sh +++ b/install.sh @@ -20,7 +20,7 @@ echo "\nInstalling ZSH Docker Compose auto completion\n" mkdir -p ~/.zsh/completion curl -L https://raw.githubusercontent.com/docker/compose/1.21.0/contrib/completion/zsh/_docker-compose > ~/.zsh/completion/_docker-compose curl -L https://raw.githubusercontent.com/docker/machine/v0.14.0/contrib/completion/zsh/_docker-machine > ~/.zsh/completion/_docker-machine -echo "fpath=(~/.zsh/completion $fpath)" >> ~/.zshrc +echo "fpath=(~/.zsh/completion \$fpath)" >> ~/.zshrc echo "autoload -Uz compinit && compinit -i" >> ~/.zshrc echo "\nRefreshing ZSH Env\n"