Files
dotfiles/zsh/.profile.d/golang.sh
Fabio Scotto di Santolo 3bce5ef841 Cleanup ZSH config
2025-08-18 22:20:47 +02:00

7 lines
133 B
Bash

#!/usr/bin/env bash
if command -v go > /dev/null 2>&1; then
export GOPATH="$HOME/.local/share/Go"
export GOBIN="$GOPATH/bin"
fi