XCode Error PhaseScriptExecution failed with a nonzero exit code when you update from 14.2 to 14.3

preview_player
Показать описание
Fixing a common error of XCode Error PhaseScriptExecution failed with a nonzero exit code
if [ -L "${source}" ]; then
echo "Symlinked..."
source="$(readlink "${source}")"
fi
To "by adding -f "
if [ -L "${source}" ]; then
echo "Symlinked..."
source="$(readlink -f "${source}")"
fi
Sometimes works but what I had to do is
Erase arm64 from Excluded_ARCH files and replace with $(inheirited)
Clean Build folder and Archive
Рекомендации по теме
Комментарии
Автор

You saved a compnay buddy! Thanks a lot

ugestoroficial
Автор

In my case, I also needed to put -f where readlink appears, such as (readlink -f "${source}").Thanks

pavanmahajan
Автор

I am facing the same issue in my project can you help me in fixing it
/Users/myuser/.bash_profile: line 2: /Users/myuser/.zshrc: Permission denied
bash: project/my No such file or directory
Command PhaseScriptExecution failed with a nonzero exit code

getting this every time when I run build, whats the actual issue

SatwikRudra-bk
Автор

React-rncore error:
Command PhaseScriptExecution failed with a nonzero exit code.
hello, help me

abjalilovdiyor
Автор

How do you got that more detail about errors that show line 132?

pushkpro
Автор

im getting error No such module 'OneSignal'

mickyngailo
welcome to shbcf.ru