We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b59566f + 5667f96 commit 2393185Copy full SHA for 2393185
scripts/solc-bin/bytecode_reports_for_modified_binaries.sh
@@ -124,7 +124,12 @@ modified_release_versions=$(
124
uniq
125
)
126
echo "Release versions modified in the commit range:"
127
-echo "$modified_release_versions"
+if [[ $modified_release_versions != "" ]]; then
128
+ echo "$modified_release_versions"
129
+else
130
+ echo "No modified binaries found."
131
+ exit 0
132
+fi
133
134
# NOTE: We want perform the check when the soljson-* files in bin/ and wasm/ are modified too
135
# because in that case the symlinks in emscripten-wasm32/ and emscripten-asmjs/ might remain
0 commit comments