Merge pull request #2 from benmaidel/fix/install_zsh

fix typo
This commit is contained in:
Deleh 2023-09-21 17:21:08 +02:00 committed by GitHub
commit 606c3a2b86
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,7 +2,7 @@
# Adds $1 to ~/.zshrc if not already present
function _add_to_config {
if ! grep "$1" ~/.zshrv > /dev/null; then
if ! grep "$1" ~/.zshrc > /dev/null; then
echo "$1" >> ~/.zshrc
fi
}