From 4a908c227939c39467014213b96ca645f3908727 Mon Sep 17 00:00:00 2001 From: Carlo Sciolla Date: Wed, 21 Aug 2019 11:19:37 +0200 Subject: [PATCH] Avoid zero-padding of hours to mimic MELPA --- bin/set-version.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/set-version.sh b/bin/set-version.sh index c278854..19c7425 100755 --- a/bin/set-version.sh +++ b/bin/set-version.sh @@ -22,7 +22,7 @@ case "$(git rev-parse --abbrev-ref HEAD)" in ;; 'develop') - VERSION="$(date '+%Y%m%d.%H%M')" # MELPA style + VERSION="$(date '+%Y%m%d.%-H%M')" # MELPA style update_version "${VERSION}" git add plantuml-mode.el ;;