From 678a22461c6702e552ca4b10d3587830d4b98795 Mon Sep 17 00:00:00 2001 From: Christian Kreibich Date: Wed, 2 Apr 2025 18:10:21 -0700 Subject: [PATCH] Stop suppressing stdout during Zeekygen docs generation It's no longer needed to suppress noise, and any output is now actually of interest. --- ci/update-zeekygen-docs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/update-zeekygen-docs.sh b/ci/update-zeekygen-docs.sh index 278588752b..4884994f24 100755 --- a/ci/update-zeekygen-docs.sh +++ b/ci/update-zeekygen-docs.sh @@ -28,7 +28,7 @@ cd $build_dir export ZEEK_SEED_FILE=$source_dir/testing/btest/random.seed function run_zeek { - ZEEK_ALLOW_INIT_ERRORS=1 zeek -X $conf_file zeekygen >/dev/null + ZEEK_ALLOW_INIT_ERRORS=1 zeek -X $conf_file zeekygen if [ $? -ne 0 ]; then echo "Failed running zeek with zeekygen config file $conf_file" >&2