diff options
author | Naoto Ono <[email protected]> | 2025-03-24 20:45:24 +0900 |
---|---|---|
committer | GitHub <[email protected]> | 2025-03-24 11:45:24 +0000 |
commit | 56b89d31c722f31164174ea5eb3aa5ec12754d73 (patch) | |
tree | 5b79eb5fa5c779cc70aec6f7f1284ac1b7a05c49 | |
parent | 42daa6c2a2b49b4e45f40736e25c7d182860f24a (diff) |
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
```
Notes
Notes:
Merged-By: ono-max <[email protected]>
-rw-r--r-- | .github/workflows/macos.yml | 2 | ||||
-rw-r--r-- | .github/workflows/modgc.yml | 2 | ||||
-rw-r--r-- | .github/workflows/ubuntu.yml | 2 | ||||
-rw-r--r-- | .github/workflows/yjit-macos.yml | 2 | ||||
-rw-r--r-- | .github/workflows/yjit-ubuntu.yml | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 6e74fa18e2..77fe2d21fc 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -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 diff --git a/.github/workflows/modgc.yml b/.github/workflows/modgc.yml index e33daf06fa..9162c17924 100644 --- a/.github/workflows/modgc.yml +++ b/.github/workflows/modgc.yml @@ -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 diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index 368cf9d5ec..f14e68f0e8 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -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 diff --git a/.github/workflows/yjit-macos.yml b/.github/workflows/yjit-macos.yml index 4c2dc49583..930b1b3b31 100644 --- a/.github/workflows/yjit-macos.yml +++ b/.github/workflows/yjit-macos.yml @@ -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 diff --git a/.github/workflows/yjit-ubuntu.yml b/.github/workflows/yjit-ubuntu.yml index aaa7d56ffa..9ad5cdac8a 100644 --- a/.github/workflows/yjit-ubuntu.yml +++ b/.github/workflows/yjit-ubuntu.yml @@ -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 |