From d584890bc79e24a49e360c3f476defb326cbcf8c Mon Sep 17 00:00:00 2001 From: veclavtalica Date: Tue, 8 Oct 2024 10:40:32 +0300 Subject: [PATCH] /bin/gen_api_header.sh: ignore error pipe --- bin/gen_api_header.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/gen_api_header.sh b/bin/gen_api_header.sh index 2b21995..d4e93eb 100755 --- a/bin/gen_api_header.sh +++ b/bin/gen_api_header.sh @@ -1,4 +1,4 @@ #!/bin/env sh # single header api generator with clang -clang -I./ -P -E -nostdinc -nobuiltininc -DTWN_NOT_C $TWNROOT/include/twn_game_api.h | clang-format +clang -I./ -P -E -nostdinc -nobuiltininc -DTWN_NOT_C $TWNROOT/include/twn_game_api.h 2> /dev/null | clang-format