From 9dad6d730c8d6adbca697575cfd6875111a3f535 Mon Sep 17 00:00:00 2001 From: Aleksandr Shushkov Date: Sun, 19 Dec 2021 19:59:17 +0300 Subject: [PATCH] Add .zprofile exporting --- xcode/aux_scripts/install_env.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xcode/aux_scripts/install_env.sh b/xcode/aux_scripts/install_env.sh index 379c640..59b0a2f 100644 --- a/xcode/aux_scripts/install_env.sh +++ b/xcode/aux_scripts/install_env.sh @@ -33,7 +33,7 @@ function source_home_file { # Use specific exec due to Xcode has custom value of $PATH if [ -z "$(which $1)" ]; then - source_home_file ".bash_profile" || source_home_file ".zshrc" || true + source_home_file ".bash_profile" || source_home_file ".zshrc" || source_home_file ".zprofile" || true echo "User defined enviroment has been set for ${1}" fi \ No newline at end of file