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:
parent
42daa6c2a2
commit
56b89d31c7
Notes:
git
2025-03-24 11:45:42 +00:00
Merged-By: ono-max <onoto1998@gmail.com>
2
.github/workflows/macos.yml
vendored
2
.github/workflows/macos.yml
vendored
@ -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
|
||||
|
2
.github/workflows/modgc.yml
vendored
2
.github/workflows/modgc.yml
vendored
@ -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
|
||||
|
2
.github/workflows/ubuntu.yml
vendored
2
.github/workflows/ubuntu.yml
vendored
@ -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
|
||||
|
2
.github/workflows/yjit-macos.yml
vendored
2
.github/workflows/yjit-macos.yml
vendored
@ -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
|
||||
|
2
.github/workflows/yjit-ubuntu.yml
vendored
2
.github/workflows/yjit-ubuntu.yml
vendored
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user