有没有办法在一条车道上传递Fastlane Pilot的详细标志?

时间:2017-07-09 14:08:02

标签: fastlane fastlane-pilot

我正在调试我的fastlane动作和通道以了解是否以及如何使其更快,但还没有找到将详细标志传递给飞行员动作的方法。

2 个答案:

答案 0 :(得分:0)

我没有尝试,但可能存在参数pilot(verbose: true)

但作为一种解决方法,你可以在你的车道内用sh调用飞行员

sh("pilot --verbose -Morearguments")

答案 1 :(得分:0)

是的,您可以将verbose: true传递给试点操作。

例如

pilot(
    username: my_user_name,
    app_identifier: app_identifier,
    ipa: "path/to/ipa_name.ipa",
    verbose: true
)