From 7522d8df797c9ed813b9f75050e25becdcb4a25b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Thomas=20Wei=C3=9Fschuh?= Date: Tue, 16 Apr 2024 09:00:41 +0200 Subject: [PATCH] all_errnos/all_syscalls: fail if any step fails MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Thomas Weißschuh --- tools/all_errnos | 1 + tools/all_syscalls | 1 + 2 files changed, 2 insertions(+) diff --git a/tools/all_errnos b/tools/all_errnos index 2cfb14bc3a..828d56f683 100755 --- a/tools/all_errnos +++ b/tools/all_errnos @@ -3,6 +3,7 @@ # Derrived from all_syscalls. set -e +set -o pipefail OUTPUT=errnos.h ERRNO_INCLUDES=" diff --git a/tools/all_syscalls b/tools/all_syscalls index 9c147786cf..c8a56155b7 100755 --- a/tools/all_syscalls +++ b/tools/all_syscalls @@ -1,6 +1,7 @@ #!/bin/bash set -e +set -o pipefail OUTPUT=syscalls.h SYSCALL_INCLUDES=" -- 2.47.3