Skip to content

Commit 56b89d3

Browse files
authored
Launchable: Fix CI scripts by adding backslashes (ruby#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 ```
1 parent 42daa6c commit 56b89d3

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ jobs:
133133
- name: make ${{ matrix.test_task }}
134134
run: |
135135
if [ -n "${LAUNCHABLE_ORGANIZATION}" ]; then
136-
exec
136+
exec \
137137
> >(tee launchable_stdout.log) \
138138
2> >(tee launchable_stderr.log)
139139
fi

.github/workflows/modgc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ jobs:
143143
- name: make ${{ matrix.test_task }}
144144
run: |
145145
if [ -n "${LAUNCHABLE_ORGANIZATION}" ]; then
146-
exec
146+
exec \
147147
> >(tee launchable_stdout.log) \
148148
2> >(tee launchable_stderr.log)
149149
fi

.github/workflows/ubuntu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ jobs:
119119
- name: make ${{ matrix.test_task }}
120120
run: |
121121
if [ -n "${LAUNCHABLE_ORGANIZATION}" ]; then
122-
exec
122+
exec \
123123
> >(tee launchable_stdout.log) \
124124
2> >(tee launchable_stderr.log)
125125
fi

.github/workflows/yjit-macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ jobs:
130130
- name: make ${{ matrix.test_task }}
131131
run: |
132132
if [ -n "${LAUNCHABLE_ORGANIZATION}" ]; then
133-
exec
133+
exec \
134134
> >(tee launchable_stdout.log) \
135135
2> >(tee launchable_stderr.log)
136136
fi

.github/workflows/yjit-ubuntu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ jobs:
184184
- name: make ${{ matrix.test_task }}
185185
run: |
186186
if [ -n "${LAUNCHABLE_ORGANIZATION}" ]; then
187-
exec
187+
exec \
188188
> >(tee launchable_stdout.log) \
189189
2> >(tee launchable_stderr.log)
190190
fi

0 commit comments

Comments
 (0)