diff options
| author | Nobuyoshi Nakada <nobu@ruby-lang.org> | 2025-06-15 20:58:06 +0900 |
|---|---|---|
| committer | Nobuyoshi Nakada <nobu@ruby-lang.org> | 2025-06-15 20:58:06 +0900 |
| commit | b670a04ac7f92c26dc8ecad4ccbb31a171a76d6e (patch) | |
| tree | bf5f1d8924df94993c33810f340ceb0fc942e112 | |
| parent | 36a04de9f08584fd566a349c9d5e953905b45838 (diff) | |
Fix a missing double quote
| -rw-r--r-- | .github/actions/launchable/setup/action.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/actions/launchable/setup/action.yml b/.github/actions/launchable/setup/action.yml index 09a70516ae..07990a885b 100644 --- a/.github/actions/launchable/setup/action.yml +++ b/.github/actions/launchable/setup/action.yml @@ -244,7 +244,7 @@ runs: post: | rm -f "${test_all_session_file}" rm -f "${btest_session_file}" - rm -f "${test_spec_session_file} + rm -f "${test_spec_session_file}" if: always() && steps.setup-launchable.outcome == 'success' env: test_all_session_file: ${{ steps.global.outputs.test_all_session_file }} |
