From 5a74f4ac398dda764d59952436bd7d36fbb84cf0 Mon Sep 17 00:00:00 2001 From: jld3103 Date: Mon, 23 Oct 2023 16:37:18 +0200 Subject: [PATCH] fix(build): Use --no-pager for OpenAPI diff Signed-off-by: jld3103 --- build/openapi-checker.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/openapi-checker.sh b/build/openapi-checker.sh index afe55c4a269..ca9d382a1cf 100755 --- a/build/openapi-checker.sh +++ b/build/openapi-checker.sh @@ -15,7 +15,7 @@ done if [ $changed = true ] then - git diff + git --no-pager diff echo "The OpenAPI specifications are not up to date" echo "Please run: bash build/openapi-checker.sh" echo "And commit the result"