Much special crashes the bitrise.yml editor

I have a official scripts step in my workflow.
The content of the script is like…

#!/bin/bash
set -ex
#
sed -i -e 's/attributes = {/attributes = {\n\t\t\t\tTargetAttributes = {\n\t\t\t\t\t'"$AUTOSIGNID"' = {\n\t\t\t\t\t\tProvisioningStyle = Manual;\n\t\t\t\t\t};\n\t\t\t\t};/g' "${BITRISE_PROJECT_PATH}/project.pbxproj"

And if I open the bitrise.yml the browser crashes and say the script took too long.

* In Chrome web browser I have the same issue!

If I remove the string it works.

At the moment I removed it because I not need this. This is only a visual thing :innocent:

1 Like

Thanks for reporting, I created an internal ticket for this too! :wink:

1 Like

A workaround in the meantime (if someone would need it): save the script into your repository and simply run it from the Script step, e.g.:

#!/bin/bash
set -ex

bash ./path/to/script.sh