From 7d1fcf5bc9c1117b700a15665f84d9fdff0bd9a8 Mon Sep 17 00:00:00 2001 From: Ryan Cavicchioni Date: Sat, 4 Oct 2025 11:26:01 -0500 Subject: [PATCH] add Go to path --- .bashrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.bashrc b/.bashrc index a5fcef2..b7a2b21 100644 --- a/.bashrc +++ b/.bashrc @@ -29,6 +29,9 @@ fi if ! [[ "$PATH" =~ $HOME/.local/bin:$HOME/bin: ]]; then PATH="$HOME/.local/bin:$HOME/bin:$PATH" fi +if ! [[ "$PATH" =~ /usr/local/go/bin ]]; then + PATH="/usr/local/go/bin:$PATH" +fi # User specific aliases and functions if [ -d ~/.bashrc.d ]; then