add cargo bin to path

This commit is contained in:
thek4n 2026-03-13 18:05:11 +03:00
parent 91adc03b90
commit 96b8add23e

View File

@ -55,6 +55,10 @@ if [ -d "${HOME}/.local/bin" ] ; then
export PATH="${HOME}/.local/bin:${PATH}"
fi
if [ -d "${HOME}/.cargo/bin" ] ; then
export PATH="${HOME}/.cargo/bin:${PATH}"
fi
export GOCACHE="${TMPDIR}/go-cache-$(id -u)"
export PPROF_TMPDIR="${TMPDIR}/go-pprof-$(id -u)"
export GOPATH="${HOME}/.cache/go"