I get this error in Xcode when I try to archive my project:
Command PhaseScriptExecution failed with a nonzero exit code
Search for this code (will be in a frameworks.sh file)
source="$(readlink "${source}")"
and replce with the following (see the -f added):
source="$(readlink -f "${source}")"
Clear your build folder and clean errors, then rebuild (Archive).
Develop games in your browser. Powerful, performant & highly capable.
Search for this code (will be in a frameworks.sh file) source="$(readlink "${source}")" and replce with the following (see the -f added): source="$(readlink -f "${source}")" Clear your build folder and clean errors, then rebuild (Archive).
MAN! Thank you very much.
It worked like a charm.
Cheers.