only run path helper when the file exists

This commit is contained in:
Ivan Malison 2016-06-10 16:26:39 -07:00
parent 27f2baa4da
commit db96469bfb

View File

@ -81,8 +81,11 @@ function _setup_env {
} }
function _path_helper { function _path_helper {
export PATH_HELPER_RAN="$(date)" if [ -f /usr/libexec/path_helper ];
eval "$(/usr/libexec/path_helper -s)" then
export PATH_HELPER_RAN="$(date)"
eval "$(/usr/libexec/path_helper -s)"
fi
} }
environment_variable_exists PATH_HELPER_RAN || _path_helper environment_variable_exists PATH_HELPER_RAN || _path_helper