0

我正在我的 iOS 应用程序中集成 site24X7 APM。我在项目中有两个 shell 脚本文件,dsym_upload.sh 和 run.sh。我想在构建期间执行这些文件。下面是我必须根据Site24X7 文档使用的脚本代码。

ls -l
eval "{Path to run script and dsym_upload file}/run" --api-key= xyz --upload-symbols=true

目前,我正在使用下面的代码和路径(${TARGET_BUILD_DIR}/${EXECUTABLE_NAME})来执行脚本,但没有按预期工作。它在构建阶段抛出错误。

ls -l
eval "${TARGET_BUILD_DIR}/${EXECUTABLE_NAME}/content/run.sh" --api-key=xyz --upload-symbols=true

得到以下错误-

/Users/xyz/Library/Developer/Xcode/DerivedData/AppName-ggirrbujrwgvkeggkmthtjsryvas/Build/Products/Debug-iphonesimulator/AppName/content/run.sh: No such file or directory
Command PhaseScriptExecution failed with a nonzero exit code
4

0 回答 0