From 6c87d501e66c4d806bcf49a0bc0026b79f4f4f76 Mon Sep 17 00:00:00 2001 From: knoflook Date: Tue, 30 Nov 2021 12:07:40 +0100 Subject: [PATCH] fix(installer): drop double echo --- scripts/installer/installer | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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