From d6043bbd620d7a88ef7dbb47e65ff434594af442 Mon Sep 17 00:00:00 2001 From: Jordan Orelli Date: Thu, 31 Dec 2020 15:26:10 -0600 Subject: [PATCH] put ~/bin on the path --- .bashrc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.bashrc b/.bashrc index a3b3749..1564000 100644 --- a/.bashrc +++ b/.bashrc @@ -70,6 +70,12 @@ then source <(kitty + complete setup bash) fi +# sometimes I just put binary files in a bin dir in my home directory. Is this +# gross? I dunno. What are you, some kind of cop? +if [ -d "$HOME/bin" ]; then + export PATH=$PATH:$HOME/bin +fi + # add the Go bindir to the path if we have the standard Go install dir if [ -d /usr/local/go ]; then export PATH=$PATH:/usr/local/go/bin