From: Siraaj Khandkar Date: Fri, 25 Sep 2020 15:53:26 +0000 (-0400) Subject: Replace on-PATH ~/.dotnet with ~/.dotnet/tools X-Git-Url: https://git.xandkar.net/?a=commitdiff_plain;h=d44caad48479f91ab4d502e53bf70ce65d6b677e;p=khome.git Replace on-PATH ~/.dotnet with ~/.dotnet/tools since we now get dotnet executable from /usr/local/bin, but tools are still installed in ~/.dotnet/tools --- diff --git a/home/lib/login_variables.sh b/home/lib/login_variables.sh index 0631cbe..6912423 100644 --- a/home/lib/login_variables.sh +++ b/home/lib/login_variables.sh @@ -18,7 +18,7 @@ DOTNET_ROOT_path=$(which dotnet) DOTNET_ROOT_realpath=$(realpath "$DOTNET_ROOT_path") DOTNET_ROOT_dirname=$(dirname "$DOTNET_ROOT_realpath") export DOTNET_ROOT="$DOTNET_ROOT_dirname" -export PATH=$PATH:$HOME/.dotnet +export PATH=$PATH:$HOME/.dotnet/tools # Rust / cargo export PATH=$PATH:$HOME/.cargo/bin