From 2c75c3306a74398f202e57d67bc5915843948452 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Sat, 20 Apr 2013 12:17:38 +0100 Subject: Fix how VCS build version numbering happens Previously, .vcsBLAH was added, but this breaks when the previous release is 1.2 and the new one is 1.2.1. This change fixes this scenario. --- jenkinstool | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'jenkinstool') diff --git a/jenkinstool b/jenkinstool index b3c1d59..51c47ac 100755 --- a/jenkinstool +++ b/jenkinstool @@ -143,7 +143,7 @@ then version="$(upstream_version)" if ! is_release "$project" "$version" then - version="$version.vcs$(commit_date)" + version="$version.0.vcs$(commit_date)" fi tarball="${project}-${version}.tar.gz" -- cgit v1.2.1