Launchable: Fix CI scripts by adding backslashes (#12974)

The following command doesn't work correctly since a backslash doesn't exist after `exec`. This PR fixes it.

```
if [ -n "${LAUNCHABLE_ORGANIZATION}" ]; then
  exec
  > >(tee launchable_stdout.log) \
  2> >(tee launchable_stderr.log)
fi
```
This commit is contained in:
Naoto Ono 2025-03-24 20:45:24 +09:00 committed by GitHub
parent 42daa6c2a2
commit 56b89d31c7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
Notes: git 2025-03-24 11:45:42 +00:00
Merged-By: ono-max <onoto1998@gmail.com>
5 changed files with 5 additions and 5 deletions

View File

@ -133,7 +133,7 @@ jobs:
- name: make ${{ matrix.test_task }}
run: |
if [ -n "${LAUNCHABLE_ORGANIZATION}" ]; then
exec
exec \
> >(tee launchable_stdout.log) \
2> >(tee launchable_stderr.log)
fi

View File

@ -143,7 +143,7 @@ jobs:
- name: make ${{ matrix.test_task }}
run: |
if [ -n "${LAUNCHABLE_ORGANIZATION}" ]; then
exec
exec \
> >(tee launchable_stdout.log) \
2> >(tee launchable_stderr.log)
fi

View File

@ -119,7 +119,7 @@ jobs:
- name: make ${{ matrix.test_task }}
run: |
if [ -n "${LAUNCHABLE_ORGANIZATION}" ]; then
exec
exec \
> >(tee launchable_stdout.log) \
2> >(tee launchable_stderr.log)
fi

View File

@ -130,7 +130,7 @@ jobs:
- name: make ${{ matrix.test_task }}
run: |
if [ -n "${LAUNCHABLE_ORGANIZATION}" ]; then
exec
exec \
> >(tee launchable_stdout.log) \
2> >(tee launchable_stderr.log)
fi

View File

@ -184,7 +184,7 @@ jobs:
- name: make ${{ matrix.test_task }}
run: |
if [ -n "${LAUNCHABLE_ORGANIZATION}" ]; then
exec
exec \
> >(tee launchable_stdout.log) \
2> >(tee launchable_stderr.log)
fi