Skip to content

Commit fe4697a

Browse files
vinistocksnutij
andcommitted
Fix benchmark conditional
Co-authored-by: Justin Rabiller <[email protected]>
1 parent 879b7e3 commit fe4697a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/benchmark.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
- name: Finalize job
6060
run: |
6161
report="${{ steps.benchmark.outputs.REPORT }}"
62-
if [[ "$report" == *"At least one benchmark is slower than the main branch"* || "$report" == *"Missing benchmarks"*]]; then
62+
if [[ "$report" == *"At least one benchmark is slower than the main branch"* ]] || [[ "$report" == *"Missing benchmarks"* ]]; then
6363
exit 1
6464
else
6565
exit 0

0 commit comments

Comments
 (0)