From 82f04096bfaae2f6d295bc0ae01ab6f16f9f9d7e Mon Sep 17 00:00:00 2001 From: Ryo Onodera Date: Fri, 10 Jul 2020 14:55:45 +0900 Subject: [PATCH] Make more debug-friendly --- ci/publish-tarball.sh | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/ci/publish-tarball.sh b/ci/publish-tarball.sh index a343aa31ecbcd5..f8877e53d8a095 100755 --- a/ci/publish-tarball.sh +++ b/ci/publish-tarball.sh @@ -48,9 +48,13 @@ windows) TARGET=x86_64-pc-windows-gnu # Enable symlinks used by some build.rs files # source: https://stackoverflow.com/a/52097145/10242004 - git config core.symlinks true - find -type l -delete - git reset --hard + ( + set -x + git --version + git config core.symlinks true + find -type l -delete + git reset --hard + ) ;; *) echo CI_OS_NAME unset