From 5b3929d885b60a8f141573849f7d88cbbf84c69c Mon Sep 17 00:00:00 2001 From: namnatulco Date: Fri, 2 Jan 2026 10:19:10 +0100 Subject: [PATCH] modified install script to output a safe PATH-update (fixes #735) --- scripts/installer/installer | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/installer/installer b/scripts/installer/installer index aede0be6..9fe706b6 100755 --- a/scripts/installer/installer +++ b/scripts/installer/installer @@ -89,7 +89,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 this once and restart your terminal:$(tput sgr0)" p=$HOME/.local/bin - com="echo PATH=\$PATH:$p" + com='echo PATH="$PATH:'"$p"'"' if [[ $SHELL =~ "bash" ]]; then echo "$com >> $HOME/.bashrc" elif [[ $SHELL =~ "fizsh" ]]; then -- 2.49.0