次のスクリプトを実行しています。
#!/bin/bash
archive=`./builds/myapp.ipa`
curl http://testflightapp.com/api/builds.json
-F file=$archive
-F api_token='xxxxxxxxxxxxxxxxxxxxxxxxxx'
-F team_token='xxxxxxxxxxxxxxxxxxxxxxxxxx'
-F notes='here comes the new app!'
-F notify=True
-F distribution_lists='MyFriends'
しかし、エラーが発生します:
api_token、team_token、ファイル、メモ(不足しているファイル)を提供する必要があります
私は実際にTestFlightWebサイトからスクリプトをコピー/貼り付けしています。それのどこが悪いんだい?