clear_path

This commit is contained in:
Ivan Malison 2015-08-15 22:14:39 -07:00
parent 2950fb6a94
commit 91c162a322

View File

@ -372,8 +372,14 @@ function parse_timestamp {
date -d "@$(echo $1 | cut -c -10)" date -d "@$(echo $1 | cut -c -10)"
} }
function refresh_config { function clear_path {
export PATH="/bin:/usr/local/bin"
unset PATH_HELPER_RAN
unset ENVIRONMENT_SETUP_DONE unset ENVIRONMENT_SETUP_DONE
}
function refresh_config {
clear_path
source ~/.zshenv source ~/.zshenv
source ~/.zshrc source ~/.zshrc
} }