diff options
| author | seth <[email protected]> | 2022-08-31 08:41:28 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2022-08-31 12:31:43 -0400 |
| commit | 59b844443f5a5c867a98f8b89dce5b9c6ce3783f (patch) | |
| tree | 8df50f0cfdb0f55ae0d323f471b67372847e6321 /.bash_profile | |
| parent | bc8c2e6747757306a1b2aba531f7577f51d28650 (diff) | |
yep
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" |
