Use $HOME instead of ~
This commit is contained in:
parent
359d2ccd2e
commit
b83ab36a21
@ -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"
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user