From 91412716d72e8172707e2e6bcd8e5985e846f669 Mon Sep 17 00:00:00 2001 From: Ev Kontsevoy Date: Wed, 29 Jun 2016 19:12:19 -0700 Subject: [PATCH] Replaced echo with printf in Makefile Fixes #467 --- Makefile | 2 +- version.go | 2 +- version.mk | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 21cd0030157d5..70555d32bdf66 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ # Naming convention: # for stable releases we use "1.0.0" format # for pre-releases, we use "1.0.0-beta.2" format -VERSION=1.0.0 +VERSION=1.0.1-beta.1 # These are standard autotools variables, don't change them please BUILDDIR ?= build diff --git a/version.go b/version.go index 97015b2a790c7..5505ec4905f14 100644 --- a/version.go +++ b/version.go @@ -2,7 +2,7 @@ package teleport const ( - Version = "1.0.0" + Version = "1.0.1-beta.1" ) var Gitref string diff --git a/version.mk b/version.mk index 844e7709f7047..36d4f18da45af 100644 --- a/version.mk +++ b/version.mk @@ -16,5 +16,5 @@ func init() { Gitref = \"$(GITREF)\"} " # .PHONY:setver setver: - @echo $(VERSION_GO) | gofmt > version.go - @echo $(GITREF_GO) | gofmt > gitref.go + @printf $(VERSION_GO) | gofmt > version.go + @printf $(GITREF_GO) | gofmt > gitref.go