您好我进行了集成,使用fastlane创建了一个IOS项目的构建。除了我尝试启动脚本以使用launchctl在我的Mac计算机上运行fastlane命令时,一切都按预期工作。当我运行该作业时,我收到以下错误:
/Users/hugoaguero/Documents/acct/branding/usfed/ios/scripts/test.sh: line 2: fastlane: command not found
在我的测试脚本上出现以下两行(部署是我在fastfile文件上创建的一条通道):
cd ~/Documents/acct/branding/usfed/ios/
fastlane deploy
我的pList文件驻留在LaunchAgent文件夹中。这是pList文件的内容:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>com.zerowidth.launched.grobankingbuild</string>
<key>ProgramArguments</key>
<array>
<string>sh</string>
<string>-c</string>
<string>/Users/hugoaguero/Documents/acct/branding/usfed/ios/scripts/test.sh</string>
</array>
<key>StandardErrorPath</key>
<string>/tmp/com.zerowidth.launched.grobankingbuild.err</string>
<key>StandardOutPath</key>
<string>/tmp/com.zerowidth.launched.grobankingbuild.out</string>
<key>StartInterval</key>
<integer>300</integer>
</dict>
</plist>
如果我从终端正常运行命令,则执行该命令没有问题。唯一的问题是它从作业运行时。
我对终端/ Unix很新,我认为这应该是一个简单的解决方案,但需要尽快解决这个问题。请帮忙。
答案 0 :(得分:8)
从命令行获取fastlane可执行文件的完整路径:
which fastlane
并使用上面命令显示的完整(绝对)路径替换脚本中的fastlane
。