From 99de64b10b87b2a7d3346b3d616f5a75f5146687 Mon Sep 17 00:00:00 2001 From: PrincessPi3 Date: Wed, 10 Dec 2025 10:35:01 -0700 Subject: [PATCH] removan da source statements to preven errors? --- customscripts/install_script.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/customscripts/install_script.sh b/customscripts/install_script.sh index 604e165..133b9c2 100644 --- a/customscripts/install_script.sh +++ b/customscripts/install_script.sh @@ -53,14 +53,14 @@ if [ ! -z "$1" ]; then chmod +x /tmp/dotnet-install.sh /tmp/dotnet-install.sh --channel LTS echo -e "## dotnet\nPATH=\$PATH:$userhome/.dotnet:$userhome/.dotnet/tools" >> $rcfile - # source $rcfile + source $rcfile else echo -e "\ndotnet installed, skipping install of repo\n" fi install packages echo -e "\nInstallan my packages\n" sudo bash -c "apt install $packages -y" - # source $rcfile + source $rcfile ## dotnet ### haveibeenpwned-downloader if [ ! $(which haveibeenpwned-downloader) ]; then @@ -79,7 +79,7 @@ if [ ! -z "$1" ]; then ### add to rcfile echo "# linuxbrew (homebrew/brew)" >> $rcfile echo "eval \"\$($(brew --prefix)/bin/brew shellenv)\"" >> $rcfile - # source $rcfile + source $rcfile else echo -e "\nlinuxbrew installed, skipping install\n" fi @@ -212,7 +212,7 @@ thefuck_present=$? if [ $thefuck_present -ne 0 ]; then echo -e "\nthefuck alias not fonud in $rcfile, adding\n" echo -e "# thefuck\neval \$(thefuck --alias fuck)" >> $rcfile - # source $rcfile + source $rcfile else echo -e "\nthefuck is already in $rcfile, skipping\n" fi