diff options
Diffstat (limited to '.bash_profile')
| -rw-r--r-- | .bash_profile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.bash_profile b/.bash_profile index e14bd96..663182a 100644 --- a/.bash_profile +++ b/.bash_profile @@ -1,12 +1,12 @@ +#!/usr/bin/env bash # # getchoo's bash_profile # +source "${HOME}/.config/shell/profile" # add user's bin directory to path -if [ -d "$HOME/.local/bin" ] +if [ -d "${HOME}/.local/bin" ] then - export PATH="$HOME/.local/bin:$PATH" + export PATH="${HOME}/.local/bin:${PATH}" fi - -source "$HOME/.config/shell/profile" |
