diff --git a/scripts/installer/installer b/scripts/installer/installer index 1a2a3522..66ee8a26 100755 --- a/scripts/installer/installer +++ b/scripts/installer/installer @@ -76,13 +76,13 @@ function install_abra_release { p=$HOME/.local/bin com="echo PATH=\$PATH:$p" if [[ $SHELL =~ "bash" ]]; then - echo "echo $com >> $HOME/.bashrc" + echo "$com >> $HOME/.bashrc" elif [[ $SHELL =~ "fizsh" ]]; then - echo "echo $com >> $HOME/.fizsh/.fizshrc" + echo "$com >> $HOME/.fizsh/.fizshrc" elif [[ $SHELL =~ "zsh" ]]; then - echo "echo $com >> $HOME/.zshrc" + echo "$com >> $HOME/.zshrc" else - echo "echo $com >> $HOME/.profile" + echo "$com >> $HOME/.profile" fi fi