sylver-dev / sylver-cli

GNU Affero General Public License v3.0
92 stars 3 forks source link

install script: treat path as a variable for zsh #2

Closed confar closed 4 months ago

confar commented 4 months ago

Using PATH instead of $PATH inside the script string would cause the value of PATH to be set to the literal string "$tilde_install_dir:PATH".

This means that instead of appending the value of PATH to $tilde_install_dir, it would literally append the string ":PATH".

geoffreycopin commented 4 months ago

Good catch, thanks!