Currently, if someone has a .zshrc.local file, the script will write the following to it.
export PATH="$HOME/.bin:$PATH"
The script performs this action even if the line is already present in our .zshrc file. There is no need for this duplication. It also creates issues as it updates folks' local dotfiles without their permission. We should change the script to stop writing the line when it is not needed.
Currently, if someone has a
.zshrc.localfile, the script will write the following to it.The script performs this action even if the line is already present in our
.zshrcfile. There is no need for this duplication. It also creates issues as it updates folks' local dotfiles without their permission. We should change the script to stop writing the line when it is not needed.