storebytecode.sh: Update outdated script docstring.

This commit is contained in:
Kamil Śliwak 2022-02-10 16:17:51 +01:00
parent daad9a42c1
commit 0d28b8395a

View File

@ -1,10 +1,12 @@
#!/usr/bin/env bash #!/usr/bin/env bash
#------------------------------------------------------------------------------ #------------------------------------------------------------------------------
# Script used for cross-platform comparison as part of the travis automation. # Script used for cross-platform comparison of the bytecode generated by the compiler.
# Splits all test source code into multiple files, generates bytecode and # Splits all test source code into multiple files, generates bytecode and metadata
# uploads the bytecode into github.com/ethereum/solidity-test-bytecode where # for each file and combines it into a single report.txt file.
# another travis job is triggered to do the actual comparison. #
# The script is meant to be executed in CI on all supported platforms. All generated
# reports must be identical for a given compiler version.
# #
# ------------------------------------------------------------------------------ # ------------------------------------------------------------------------------
# This file is part of solidity. # This file is part of solidity.