Lately the Bitrise WF gui editor reformats some of my script step with the “|2-” ‘formatting instruction’. It doesnt seem to affect the execution but I am wondering what it is meant to do. I am familiary with “|-” which I take to mean that the script contents are preformatted and not converted to a continuous string (i.e. Stop script step from reformatting the script contents)
- script@1:
inputs:
- content: |2-
#!/usr/bin/env bash
set -e +x
Does anybody have a link to what that string after the content line means? Should I start adopting that for all of my script step so they wont get reformatted ni the YML editor?