From 76aaf0cada2b4dc891976ca1facd425880afa101 Mon Sep 17 00:00:00 2001 From: Jordan Sissel Date: Fri, 14 Mar 2014 21:12:03 +0000 Subject: [PATCH] Dont need 'build time' in the iteration --- pkg/build.sh | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/pkg/build.sh b/pkg/build.sh index d70c1aa27..a97013545 100755 --- a/pkg/build.sh +++ b/pkg/build.sh @@ -5,12 +5,8 @@ . ../.VERSION.mk -if ! git show-ref --tags | grep -q "$(git rev-parse HEAD)"; then - # HEAD is not tagged, add the date, time and commit hash to the revision - BUILD_TIME="$(date +%Y%m%d%H%M)" - DEB_REVISION="${BUILD_TIME}~${REVISION}" - RPM_REVISION=".${BUILD_TIME}.${REVISION}" -fi +DEB_REVISION="${REVISION}" +RPM_REVISION="${REVISION}" URL="http://logstash.net" DESCRIPTION="An extensible logging pipeline"