chore(shell): add adr-tools to path if installed

This commit is contained in:
Ade Attwood 2023-08-21 08:32:11 +01:00
parent 84d3f4cafb
commit 8fac40e82f

View file

@ -106,6 +106,10 @@ if [ -f "/etc/profile.d/rvm.sh" ]; then
source "/etc/profile.d/rvm.sh"
fi
if [ -d "$HOME/.local/share/adr-tools/src" ]; then
PATH="$PATH:$HOME/.local/share/adr-tools/src"
fi
# Set up the rust dev environment
if [ -f "$HOME/.cargo/env" ]; then
. "$HOME/.cargo/env"