From 9e8d740a969d3a2797bee9bfb66d2dd8346e56d0 Mon Sep 17 00:00:00 2001 From: George Kalpakas Date: Thu, 16 Feb 2017 18:57:58 +0200 Subject: [PATCH] ci: fix `getLatestLabel` (#14535) --- scripts/publish/publish-build-artifacts.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/scripts/publish/publish-build-artifacts.sh b/scripts/publish/publish-build-artifacts.sh index 04299f9f66..1476d8b445 100755 --- a/scripts/publish/publish-build-artifacts.sh +++ b/scripts/publish/publish-build-artifacts.sh @@ -18,7 +18,6 @@ function getLatestTag { # Increase the clone depth and look for a tag. depth=$((depth + 50)) - echo "Looking for latest tag at depth $depth..." git fetch --depth=$depth latestTag=`git describe --tags --abbrev=0 || echo NOT_FOUND` done