builds godot
Diffstat (limited to '.github/actions/setup/action.yml')
| -rw-r--r-- | .github/actions/setup/action.yml | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index c88d541..d86b067 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -42,7 +42,6 @@ runs: if: steps.clean.outputs.clean == 'true' run: | # Patch godot - echo "::group::Patch godot" (cd repo && mv "${{ env.modules }}" ../godot/custom.py && mv patches ../godot) cd godot for patch in patches/*; do git apply --ignore-whitespace "$patch" || err="$patch"; done @@ -50,5 +49,4 @@ runs: echo "::error file={${err}}::Go update your patch" exit 1 fi - echo "::endgroup::" shell: bash |