From 03655c310dccd4f6d61af262ccf886b7e3906fe4 Mon Sep 17 00:00:00 2001 From: Jade Lovelace Date: Wed, 15 May 2024 13:09:05 -0700 Subject: build-release-notes: fail if the directory does not exist This was a combination of two problems: the python didn't throw an error because apparently glob on a nonexistent directory doesn't crash, and secondarily, bash ignores bad exit codes without `set -e` if they are not in the final/only command. Change-Id: I812bde7a4daee5c77ffe9d7c73a25fd14969f548 --- doc/manual/src/release-notes/meson.build | 2 ++ 1 file changed, 2 insertions(+) (limited to 'doc') diff --git a/doc/manual/src/release-notes/meson.build b/doc/manual/src/release-notes/meson.build index a33798bc1..cbcc58e1f 100644 --- a/doc/manual/src/release-notes/meson.build +++ b/doc/manual/src/release-notes/meson.build @@ -1,6 +1,8 @@ rl_next_generated = custom_target( command : [ 'bash', + '-euo', + 'pipefail', '-c', ''' if type -p build-release-notes > /dev/null; then -- cgit v1.2.3