From 00c906c49ec68b4048c64fcf553e5f1f5fc5c5db Mon Sep 17 00:00:00 2001 From: xengineering Date: Thu, 31 Oct 2024 23:01:41 +0100 Subject: posix-shell: Add go bin path to PATH This allows to install programs with `go install @`. --- posix-shell/constants.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/posix-shell/constants.sh b/posix-shell/constants.sh index 2b29fa3..9258e1b 100644 --- a/posix-shell/constants.sh +++ b/posix-shell/constants.sh @@ -1,6 +1,6 @@ #!/bin/sh -export PATH="${HOME}/.local/bin:${PATH}" export GOPATH="${HOME}/go" +export PATH="${HOME}/.local/bin:${GOPATH}/bin:${PATH}" export EDITOR='nvim' -- cgit v1.2.3-70-g09d2