From 06d480ce911cf2b0208bca0aaf8439b2da3dfb3c Mon Sep 17 00:00:00 2001 From: plusone_nick Date: Sun, 15 Oct 2023 23:09:50 +0000 Subject: [PATCH 1/2] Update scripts/installer/installer --- scripts/installer/installer | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/installer/installer b/scripts/installer/installer index 2a73b442..367cf4c1 100755 --- a/scripts/installer/installer +++ b/scripts/installer/installer @@ -82,7 +82,7 @@ function install_abra_release { if [ $? -ne 0 ]; then echo "$(tput setaf 3)WARNING: $HOME/.local/bin/ is not in \$PATH! If you want to run abra by just typing "abra" you should add it to your \$PATH! To do that run:$(tput sgr0)" p=$HOME/.local/bin - com="echo PATH=\$PATH:$p" + com="export PATH=\$PATH:$p" if [[ $SHELL =~ "bash" ]]; then echo "$com >> $HOME/.bashrc" elif [[ $SHELL =~ "fizsh" ]]; then -- 2.47.2 From 19be010275b5621f153d0b4871feee9e5847d691 Mon Sep 17 00:00:00 2001 From: plusone_nick Date: Sat, 21 Oct 2023 00:51:27 +0000 Subject: [PATCH 2/2] Update scripts/installer/installer --- scripts/installer/installer | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/installer/installer b/scripts/installer/installer index 367cf4c1..3f865eab 100755 --- a/scripts/installer/installer +++ b/scripts/installer/installer @@ -78,7 +78,7 @@ function install_abra_release { mv "$HOME/.local/bin/.abra-download" "$HOME/.local/bin/abra" chmod +x "$HOME/.local/bin/abra" - x=$(echo $PATH | grep $HOME/.local/bin) + x=$(export $PATH | grep $HOME/.local/bin) if [ $? -ne 0 ]; then echo "$(tput setaf 3)WARNING: $HOME/.local/bin/ is not in \$PATH! If you want to run abra by just typing "abra" you should add it to your \$PATH! To do that run:$(tput sgr0)" p=$HOME/.local/bin -- 2.47.2