From f43b833f01ef86f5111f14dd3d5c269d00b2628a Mon Sep 17 00:00:00 2001 From: Jonah Graham Date: Wed, 12 Feb 2025 15:46:03 -0500 Subject: [PATCH] Make sure that if any of the piped commands fail, the cleanliness fails (#1083) --- releng/scripts/check_glibc_dependencies.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/releng/scripts/check_glibc_dependencies.sh b/releng/scripts/check_glibc_dependencies.sh index b47528fa24c..7b93e976b72 100755 --- a/releng/scripts/check_glibc_dependencies.sh +++ b/releng/scripts/check_glibc_dependencies.sh @@ -11,6 +11,7 @@ ############################################################################### set -eu +set -o pipefail SCRIPT=$( basename "${BASH_SOURCE[0]}" )