You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have come across a scenario when not all standard output is returned. This seems to be happening on a non zero exit code, successful termination may or may not be affected.
Background
I was using shellOut to execute fastlane and it was failing for version requirements not being read.
Investigation
I did some tinkering and it seems to be related to how this function reads the output.
[19:04:50]: �[32m-------------------------------------------------�[0m
[19:04:50]: �[32m--- Step: Verifying required fastlane version ---�[0m
[19:04:50]: �[32m-------------------------------------------------�[0m
�[31m
[!] The Fastfile requires a fastlane version of >= 2.47.0. You are on 1.91.0. Please update using `sudo gem update fastlane`.�[0m
Assuming I am not using this wrong it looks like the output is getting cut off early.
The text was updated successfully, but these errors were encountered:
I have come across a scenario when not all standard output is returned. This seems to be happening on a non zero exit code, successful termination may or may not be affected.
Background
I was using shellOut to execute fastlane and it was failing for version requirements not being read.
Investigation
I did some tinkering and it seems to be related to how this function reads the output.
This is the output when using the default implementation
I noticed the linux only variation and thought I would try it out on macos, I hacked the function as follows.
Which produces the following output
Assuming I am not using this wrong it looks like the output is getting cut off early.
The text was updated successfully, but these errors were encountered: