Commit 36bb08a1 authored by Sam Lantinga's avatar Sam Lantinga

Don't assume .bashrc exists. :)

parent cc3f18a3
......@@ -1285,7 +1285,7 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "source ~/.bashrc\nsh ../../build-scripts/updaterev.sh";
shellScript = "if test -f ~/.bash_profile; then source ~/.bash_profile; fi\nif test -f ~/.bashrc; then source ~/.bashrc; fi\nsh ../../build-scripts/updaterev.sh";
};
FDB043B20E2689CC00F5B3F9 /* ShellScript */ = {
isa = PBXShellScriptBuildPhase;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment