Use $HOME instead of ~

This commit is contained in:
Jeremy Dormitzer 2019-05-04 12:43:16 -04:00
parent 359d2ccd2e
commit b83ab36a21
2 changed files with 6 additions and 6 deletions

View File

@ -1,9 +1,9 @@
#
# ~/.bash_profile
# $HOME/.bash_profile
#
[[ -f ~/.bashrc ]] && . ~/.bashrc
[[ -f "$HOME/.bashrc" ]] && source $HOME/.bashrc
[[ -f ~/.bash_local ]] && . ~/.bash_local
[[ -f "$HOME/.bash_local" ]] && source "$HOME/.bash_local"
[[ -f ~/.profile ]] && . ~/.profile
[[ -f "$HOME/.profile" ]] && source "$HOME/.profile"

View File

@ -5,8 +5,8 @@ then
export LOLA_TRAVEL_SERVICE_HOME=~/lola/lola-travel-service
fi
export LEDGER_FILE="~/journal.ledger"
PATH="~/.local/bin":"~/bin/":"~/.gem/ruby/2.6.0/bin":"~/.gem/ruby/2.5.0/bin":"~/go/bin":"$PATH"
export LEDGER_FILE="$HOME/journal.ledger"
PATH="$HOME/.local/bin":"$HOME/bin/":"$HOME/.gem/ruby/2.6.0/bin":"$HOME/.gem/ruby/2.5.0/bin":"$HOME/go/bin":"$PATH"
EDITOR="$(which emacsclient)"
export EDITOR