From 488649b0f6492b909ced251da2436dad732cb170 Mon Sep 17 00:00:00 2001 From: pika Date: Mon, 28 Oct 2024 14:25:27 +0100 Subject: [PATCH] bugfixed the right path --- .zshrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.zshrc b/.zshrc index f5f0086..50a75c8 100644 --- a/.zshrc +++ b/.zshrc @@ -616,8 +616,8 @@ _environment(){ fi fi - if [ -d "$HOME/go/" ]; then - export PATH="$HOME/go:$PATH" + if [ -d "$HOME/go/bin" ]; then + export PATH="$HOME/go/bin:$PATH" fi }