Add .dotnet/tools to PATH if installed

This commit is contained in:
2026-05-19 14:46:28 -05:00
committed by GitHub
parent f18f750962
commit dd91da6b00
+5
View File
@@ -57,6 +57,11 @@ if [[ -d $HOME/.cargo/bin && ":$PATH:" != *":$HOME/.cargo/bin:"* ]]; then
export PATH=$PATH:$HOME/.cargo/bin
fi
# Add .dotnet/tools path if installed and not already in $PATH
if [[ -d $HOME/.dotnet/tools && ":$PATH:" != *":$HOME/.dotnet/tools:"* ]]; then
export PATH=$PATH:$HOME/.dotnet/tools
fi
###############################################
# History configuration
###############################################