我正在运行以下脚本:
#!/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、文件和注释(缺少文件)
我实际上是从 TestFlight 网站复制/粘贴脚本。那有什么问题?