Skip to content

Commit 7bbdd9a

Browse files
authored
Merge pull request #16075 from ethereum/fix-shellcheck-script
Fix shellcheck script
2 parents 472449c + 403b548 commit 7bbdd9a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

scripts/yul_coverage.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -111,18 +111,18 @@ function test_file
111111

112112
if OUTPUT=$("${SOLC}" --ir "${SOL_FILE}" 2>&1); then
113113
SUCCESS+=("${SOL_FILE}")
114-
show_output_if ${SHOW_SUCCESSFUL}
114+
show_output_if "${SHOW_SUCCESSFUL}"
115115
else
116116
FAILED+=("${SOL_FILE}")
117117
if [[ ${OUTPUT} == *"UnimplementedFeatureError"* ]]; then
118118
UNIMPLEMENTED_FEATURE_ERRORS+=("${SOL_FILE}")
119-
show_output_if ${SHOW_UNIMPLEMENTED_FEATURE_ERRORS}
119+
show_output_if "${SHOW_UNIMPLEMENTED_FEATURE_ERRORS}"
120120
elif [[ ${OUTPUT} == *"InternalCompilerError"* ]]; then
121121
INTERNAL_COMPILER_ERRORS+=("${SOL_FILE}")
122-
show_output_if ${SHOW_INTERNAL_COMPILER_ERRORS}
122+
show_output_if "${SHOW_INTERNAL_COMPILER_ERRORS}"
123123
else
124124
OTHER_ERRORS+=("${SOL_FILE}")
125-
show_output_if ${SHOW_OTHER_ERRORS}
125+
show_output_if "${SHOW_OTHER_ERRORS}"
126126
fi
127127
fi
128128
}

0 commit comments

Comments
 (0)