Skip to content

Commit 9b0d296

Browse files
committed
-n
1 parent ab61b10 commit 9b0d296

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/opencv.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ jobs:
131131
EOS
132132
)
133133

134-
if [[ -n "${{ matrix.image }}" ]]; then
134+
if [[ "${{ matrix.image }}" == "" ]]; then
135135
bash -c "$script"
136136
else
137137
docker exec builder bash -c "$script"
@@ -150,7 +150,7 @@ jobs:
150150
EOS
151151
)
152152
153-
if [[ -n "${{ matrix.image }}" ]]; then
153+
if [[ "${{ matrix.image }}" == "" ]]; then
154154
bash -c "$script"
155155
else
156156
docker exec builder bash -c "$script"
@@ -169,7 +169,7 @@ jobs:
169169
EOS
170170
)
171171
172-
if [[ -n "${{ matrix.image }}" ]]; then
172+
if [[ "${{ matrix.image }}" == "" ]]; then
173173
bash -c "$script"
174174
else
175175
docker exec builder bash -c "$script"

0 commit comments

Comments
 (0)