From 8fac40e82fc6ab23671327cf782179424a33677b Mon Sep 17 00:00:00 2001 From: Ade Attwood Date: Mon, 21 Aug 2023 08:32:11 +0100 Subject: [PATCH] chore(shell): add adr-tools to path if installed --- site-modules/core/files/zshrc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/site-modules/core/files/zshrc b/site-modules/core/files/zshrc index 7948b6c..afe7375 100644 --- a/site-modules/core/files/zshrc +++ b/site-modules/core/files/zshrc @@ -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"