From b2751872a3f5ca40dcd2b6322db1d246731dc7f5 Mon Sep 17 00:00:00 2001 From: Clemens Schwaighofer Date: Wed, 1 Mar 2023 07:20:11 +0900 Subject: [PATCH] Published v8.0.0 and remove debug output in publish script --- publish/last.published | 2 +- publish/publish.sh | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/publish/last.published b/publish/last.published index bbe4c15..ae9a76b 100644 --- a/publish/last.published +++ b/publish/last.published @@ -1 +1 @@ -7.12.2 +8.0.0 diff --git a/publish/publish.sh b/publish/publish.sh index 8b50fa4..e608d39 100755 --- a/publish/publish.sh +++ b/publish/publish.sh @@ -11,7 +11,6 @@ fi; # compare version, if different or newer, deploy if [ -f "${file_last_published}" ]; then LAST_PUBLISHED_VERSION=$(cat ${file_last_published}); - echo "V: ${VERSION} | ${LAST_PUBLISHED_VERSION}"; if $(dpkg --compare-versions "${VERSION}" le "${LAST_PUBLISHED_VERSION}"); then echo "git tag version ${VERSION} is not newer than previous published version ${LAST_PUBLISHED_VERSION}"; exit;