We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
I am getting the following error when trying to archive your Mac application target:
👎 cp: /Users/khoa/Library/Application Scripts/com.fantageek.XcodeWayApp.XcodeWayExtensions: No such file or directory
Command PhaseScriptExecution failed with a nonzero exit code
Any ideas on how to fix?
The text was updated successfully, but these errors were encountered:
Hi @Signify did you find any solution for this, even I am facing the same issue . Just above this error message I see below line
/bin/sh -c /Users/syamala/Library/Developer/Xcode/DerivedData/XcodeWay-abkryidabvzfpraclujcofmgspwr/Build/Intermediates.noindex/XcodeWay.build/Debug/XcodeWayExtensions.build/Script-D2B221991F976DF500C45949.sh
When I open this it is
cp "${SRCROOT}/XcodeWayExtensions/Script/XcodeWayScript.scpt" "/Users/khoa/Library/Application Scripts/com.fantageek.XcodeWayApp.XcodeWayExtensions"
Issue here is that destination is hardcoded "/Users/khoa/Library/Application Scripts/com.fantageek.XcodeWayApp.XcodeWayExtensions"
Even I change it , it is being getting overridden.
If you find any solution please share it with me , Thanks
Sorry, something went wrong.
Open this file XcodeWay-master/./XcodeWay.xcodeproj/project.pbxproj Search for "khoa" and replace with your home folder name
Issue resolved for me @Signify
This is what the script really needs to be:
cp "${SRCROOT}/XcodeWayExtensions/Script/XcodeWayScript.scpt" "${USER_LIBRARY_DIR}/Application Scripts/com.fantageek.XcodeWayApp.XcodeWayExtensions"
No branches or pull requests
Hello,
I am getting the following error when trying to archive your Mac application target:
👎 cp: /Users/khoa/Library/Application Scripts/com.fantageek.XcodeWayApp.XcodeWayExtensions: No such file or directory
Command PhaseScriptExecution failed with a nonzero exit code
Any ideas on how to fix?
The text was updated successfully, but these errors were encountered: