Add totara docker dev tools to path

This commit is contained in:
Jonny Barnes 2022-07-13 15:47:41 +01:00
parent 5737c344e9
commit 9104dd81c6
Signed by: jonny
SSH key fingerprint: SHA256:CTuSlns5U7qlD9jqHvtnVmfYV3Zwl2Z7WnJ4/dqOaL8

View file

@ -1,6 +1,6 @@
# Fig pre block. Keep at the top of this file.
# Fig binary can be installed to $HOME, so ammend the $PATH
export PATH="$PATH:$HOME/.local/bin"
# Fig pre block. Keep at the top of this file.
if [ -f "$HOME/.fig/shell/zshrc.pre.zsh" ]; then
. "$HOME/.fig/shell/zshrc.pre.zsh"
fi
@ -80,6 +80,9 @@ export PATH="$PATH:/usr/local/go/bin:/usr/local/opt/go/libexec/bin:$GOPATH/bin"
GPG_TTY=`tty`
export GPG_TTY
# Add Totara Docker helper functions
export PATH="$PATH:$HOME/git/totara-docker-dev/bin"
# Set the rip (Rm ImProved) graveyard
export GRAVEYARD="$HOME/.local/share/Trash"
@ -141,6 +144,4 @@ fi
eval "$(starship init zsh)"
# Fig post block. Keep at the bottom of this file.
if [ -f "$HOME/.fig/shell/zshrc.post.zsh" ]; then
. "$HOME/.fig/shell/zshrc.post.zsh"
fi
[[ -f "$HOME/.fig/shell/zshrc.post.zsh" ]] && . "$HOME/.fig/shell/zshrc.post.zsh"