summary refs log tree commit diff
path: root/.profile
diff options
context:
space:
mode:
authorRobert Günzler <r@gnzler.io>2020-04-10 13:58:38 +0200
committerRobert Günzler <r@gnzler.io>2020-04-10 13:58:38 +0200
commitff02a0eb8d42aa76cdce8fee01056de63cd26751 (patch)
tree0d6253b29d949fd91924bc14600c1228c15cc0e5 /.profile
parent2292ee099d45843574541b7806a21e2f82c2bd1b (diff)
Add cargo bin to PATH
Diffstat (limited to '')
-rw-r--r--.profile4
1 files changed, 4 insertions, 0 deletions
diff --git a/.profile b/.profile
index b9088ab..1966f72 100644
--- a/.profile
+++ b/.profile
@@ -12,6 +12,10 @@ if [ -d "${GOPATH}" ]; then
 	pathappend "${GOPATH}/bin"
 fi
 
+if [ -d "${HOME}/.cargo/bin" ]; then
+	pathappend "${HOME}/.cargo/bin"
+fi
+
 # Use the new build backend in docker
 export DOCKER_BUILDKIT=1