Commit 517340f 1 parent 8ad8344 commit 517340f Copy full SHA for 517340f
File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -56,12 +56,12 @@ zip: build
56
56
zsh :
57
57
@mkdir -p ~ /.zsh/completion
58
58
@mkdir -p ~ /.oh-my-zsh/completions
59
- @nef --generate-completion-script zsh > ~ /.oh-my-zsh/completions/_nef
60
- @nef --generate-completion-script zsh > ~ /.zsh/completion/nef.zsh
59
+ @$( PREFIX_BIN ) / nef --generate-completion-script zsh > ~ /.oh-my-zsh/completions/_nef
60
+ @$( PREFIX_BIN ) / nef --generate-completion-script zsh > ~ /.zsh/completion/nef.zsh
61
61
$(shell if [[ ! -f ~/.zshrc ]] || [[ ! `grep "~/.zsh/completion" ~/.zshrc` ]]; then echo -e '\n# Enable Zsh completions\nfpath=(~/.zsh/completion $$fpath) \n autoload -U compinit\n compinit\n ' >> ~/.zshrc; fi)
62
62
63
63
.PHONY : bash
64
64
bash :
65
65
@mkdir -p ~ /.bash_completions
66
- @nef --generate-completion-script bash > ~ /.bash_completions/nef.bash
66
+ @$( PREFIX_BIN ) / nef --generate-completion-script bash > ~ /.bash_completions/nef.bash
67
67
$(shell if [[ ! -f ~/.bashrc ]] || [[ ! `grep "nef.bash" ~/.bashrc` ]]; then echo "source ~/.bash_completions/nef.bash" >> ~/.bashrc; fi)
You can’t perform that action at this time.
0 commit comments