Commit 4a61bf42 authored by Dom Sekotill's avatar Dom Sekotill
Browse files

Fix profile file sourcing for individual shells

parent a2765682
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -16,7 +16,7 @@ if [ -n "$PS1" ]; then
	export PS1
fi

source_each ~/.shell/$(get_platform)/profile ~/.sh_local ~/.bash_local
source_each ~/.bash_local

# Automatically run terminal multiplexer on SSH connect
[ -n "$SSH_TTY" ] && [ "x$TERM" != xscreen ] && has tmux &&
+1 −1
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@ has vim &&
# "~/.local"
PREFIX=":/usr:/usr/local"

source_each ~/.profile_local
source_each ~/.shell/$(get_platform)/profile ~/.profile_local

# Other local bin paths
manage_path PATH ~/.bin check
+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@ source ~/.shell/funcs

# Source all-shell startup profile environments
source_first ~/.profile /etc/profile
source_each ~/.shell/$(get_platform)/profile ~/.sh_local ~/.zsh_local
source_each ~/.zsh_local

# Automatically run terminal multiplexer on SSH connect
[ -n "$SSH_TTY" ] && [ "x$TERM" != xscreen ] && has tmux &&