Revert "Gracefully handle launchctl failure, using reattach script if possible."

This reverts commit 4361239a98.

This is better handled in .tmux.conf
This commit is contained in:
John McDonnell 2012-12-01 21:44:20 -05:00
parent 4361239a98
commit e5391f5545

View file

@ -16,11 +16,7 @@
# Set environment variables for launchd processes.
if [[ "$OSTYPE" == darwin* ]]; then
for env_var in PATH MANPATH; do
if which reattach-to-user-namespace > /dev/null; then
reattach-to-user-namespace launchctl setenv "$env_var" "${(P)env_var}"
else
launchctl setenv "$env_var" "${(P)env_var}" || echo "Launchctl error, possible solution: Install reattach-to-user-namespace"
fi
launchctl setenv "$env_var" "${(P)env_var}"
done
fi
} &!