After running the installer with zsh, I have a modified .zshrc and the installer instructs:
1. Start a new shell (or run: source ~/.bashrc)
After doing so, nvd isn't in path (I'm using .zshrc here).
Output from the install script mentions the wrapper script:
/home/cg79628/.local/bin/nvd
After adding the following line to .zshrc, I can now use nvd:
export PATH=$PATH:~/.local/bin
Is .local/bin/nvd what I want to see for which nvd? If so, I suggest prompting the user to add .local/bin to path (or including this in the install.sh process).
After running the installer with zsh, I have a modified .zshrc and the installer instructs:
1. Start a new shell (or run: source ~/.bashrc)After doing so, nvd isn't in path (I'm using .zshrc here).
Output from the install script mentions the wrapper script:
/home/cg79628/.local/bin/nvdAfter adding the following line to .zshrc, I can now use nvd:
export PATH=$PATH:~/.local/binIs
.local/bin/nvdwhat I want to see forwhich nvd? If so, I suggest prompting the user to add.local/binto path (or including this in the install.sh process).