changeset 150:39abe6b6233f

Add user's local bin dir to path This lets us run things like DVC
author IBBoard <dev@ibboard.co.uk>
date Tue, 11 Jan 2022 20:44:50 +0000
parents a94a1b5ea172
children d0aef31d4122
files bashrc
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/bashrc	Tue Jan 11 20:29:27 2022 +0000
+++ b/bashrc	Tue Jan 11 20:44:50 2022 +0000
@@ -17,7 +17,8 @@
 test -s ~/.alias && . ~/.alias || true
 
 # Add sbins to path to make life easier (e.g. /sbin/ifconfig)
-export PATH=/sbin:/usr/sbin:/usr/local/sbin:$PATH
+# Also add our hidden bin directory
+export PATH=~/.local/bin:/sbin:/usr/sbin:/usr/local/sbin:$PATH
 
 #Disable man page number prompts - where there's more than one, we normally want the default (user command) version
 export MAN_POSIXLY_CORRECT=1