2

こんにちは、fastlane を使用して 1 つの IOS プロジェクトのビルドを作成するための統合を行いました。launchctl を使用して Mac コンピューターで fastlane コマンドを実行するスクリプトを起動しようとする瞬間を除いて、すべてが期待どおりに機能します。ジョブを実行すると、次のエラーが表示されます。

/Users/hugoaguero/Documents/acct/branding/usfed/ios/scripts/test.sh: line 2: fastlane: command not found

これは、テスト スクリプトの次の 2 行で発生します (デプロイは、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に非常に慣れていません。簡単に修正できると思いますが、できるだけ早く解決する必要があります。助けてください。

4

1 に答える 1