Change a few instances of ~ to $HOME.

This commit is contained in:
2026-07-24 14:32:49 -07:00
parent 4ce049b3ea
commit ed2b678228
+4 -4
View File
@@ -124,7 +124,7 @@
- name: General | Account Management | Users | Files | Profile Variables - name: General | Account Management | Users | Files | Profile Variables
set_fact: set_fact:
export_path_additions: export PATH="~/bin:"{{ global_bin }}":"{{ shared_rc_bin }}":$PATH" export_path_additions: export PATH="$HOME/bin:"{{ global_bin }}":"{{ shared_rc_bin }}":$PATH"
#export_terminal: export TERMINAL="alacritty" # colors look weird. #export_terminal: export TERMINAL="alacritty" # colors look weird.
export_terminal: export TERMINAL="kitty" export_terminal: export TERMINAL="kitty"
@@ -1054,7 +1054,7 @@
alias check-branch="git ls-remote --heads" alias check-branch="git ls-remote --heads"
alias branch-check="check-branch" alias branch-check="check-branch"
alias_reload_bash: | alias_reload_bash: |
alias reload-bash="source ~/.bashrc" alias reload-bash="source $HOME/.bashrc"
alias bash-reload="reload-bash" alias bash-reload="reload-bash"
alias shell-reload="reload-bash" alias shell-reload="reload-bash"
alias reload-shell="reload-bash" alias reload-shell="reload-bash"
@@ -1102,8 +1102,8 @@
} }
alias try="loop " alias try="loop "
source_shared: | source_shared: |
if [ -f ~/.rc_shared ]; then if [ -f $HOME/.rc_shared ]; then
source ~/.rc_shared source $HOME/.rc_shared
fi fi
process_notify_log: | process_notify_log: |
if [[ -e {{ notify_log_file }} ]]; then if [[ -e {{ notify_log_file }} ]]; then