From 5127e8cf7aa78906959d71150200860b4c7e491a Mon Sep 17 00:00:00 2001 From: Johannes Schindelin Date: Wed, 8 Apr 2020 11:05:32 +0700 Subject: [PATCH] ci/lib: if CI type is unknown, show the environment variables MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit This should help with adding new CI-specific if-else arms. Signed-off-by: Johannes Schindelin Signed-off-by: Đoàn Trần Công Danh Signed-off-by: Junio C Hamano --- ci/lib.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/ci/lib.sh b/ci/lib.sh index 87cd29bab6..bda746df68 100755 --- a/ci/lib.sh +++ b/ci/lib.sh @@ -138,6 +138,7 @@ then GIT_TEST_OPTS="--no-chain-lint --no-bin-wrappers $GIT_TEST_OPTS" else echo "Could not identify CI type" >&2 + env >&2 exit 1 fi -- 2.47.3