Removed the initiation of default outputs in assembler mode

This commit is contained in:
mejsiej
2021-12-13 21:54:28 +01:00
parent 0bbf58ec5e
commit 55ba0d9674
36 changed files with 34 additions and 281 deletions
+3 -2
View File
@@ -68,8 +68,9 @@ function compileFull
"$SOLC" "${args[@]}" "${files[@]}" >/dev/null 2>"$stderr_path"
local exit_code=$?
local errors; errors=$(grep -v -E \
-e 'Warning: This is a pre-release compiler version|Warning: Experimental features are turned on|pragma experimental ABIEncoderV2|^ +--> |^ +\||^[0-9]+ +\| ' \
-e 'Warning: Yul is still experimental. Please use the output with care.' \
-e '^Warning: This is a pre-release compiler version|Warning: Experimental features are turned on|pragma experimental ABIEncoderV2|^ +--> |^ +\||^[0-9]+ +\| $' \
-e '^Warning: Yul is still experimental. Please use the output with care.$' \
-e '^Assembler run successful, no output requested.$' \
-e '^No text representation found.$' < "$stderr_path"
)