From 759f3d28b7e79946aea7a9c576e7a4623949c663 Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Mon, 22 Nov 2021 16:24:56 +0200 Subject: [PATCH] ci: improve diagnostic messages for cloning tcc on windows --- make.bat | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/make.bat b/make.bat index 3847982c2c..c0a5b164c6 100644 --- a/make.bat +++ b/make.bat @@ -309,8 +309,9 @@ exit /b 0 :bootstrap_tcc echo Bootstraping TCC... echo ^> TCC not found -if "!tcc_branch!" == "thirdparty-windows-i386" ( echo ^> Downloading TCC32 from !tcc_url! ) else ( echo ^> Downloading TCC64 from !tcc_url! ) +if "!tcc_branch!" == "thirdparty-windows-i386" ( echo ^> Downloading TCC32 from !tcc_url! , branch !tcc_branch! ) else ( echo ^> Downloading TCC64 from !tcc_url! , branch !tcc_branch! ) git clone --depth 1 --quiet --single-branch --branch !tcc_branch! !tcc_url! "%tcc_dir%" +git -C "%tcc_dir%" log -n3 exit /b 0 :cloning_vc