Is there a way to pass a verbose flag for the Fastlane Pilot in the alley?
I am debugging my swift actions and paths to figure out how and how to make it faster, but haven't found a way to pass the verbose flag for the pilot action.
+3
Felipe Plets
source
to share
2 answers
I am not trying, but maybe there is a parameter pilot(verbose: true)
But as a workaround, you could call the pilot with sh inside your lane.
sh("pilot --verbose -Morearguments")
0
Sulfkain
source
to share
Yes, you can submit verbose: true
for a pilot action.
for example
pilot(
username: my_user_name,
app_identifier: app_identifier,
ipa: "path/to/ipa_name.ipa",
verbose: true
)
0
njtman
source
to share