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;