adoroszlai commented on code in PR #7497: URL: https://github.com/apache/ozone/pull/7497#discussion_r1882559334
########## hadoop-ozone/dev-support/checks/build.sh: ########## @@ -14,7 +14,8 @@ # See the License for the specific language governing permissions and # limitations under the License. -set -eu -o pipefail +set -u -o pipefail Review Comment: `-e` causes the script to exit as soon as it encounters an error, e.g. if the `mvn` command fails. Post-processing logic (search for errors in the log, etc.) requires the script to continue. It exits with the proper value in the end. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
