Browse Source

Update version number in makefile

Signed-off-by: Jguer <me@jguer.space>
Jguer 7 years ago
parent
commit
7f657bebe6
1 changed files with 2 additions and 2 deletions
  1. 2 2
      Makefile

+ 2 - 2
Makefile

@@ -1,11 +1,11 @@
 .PHONY: all default install test build release clean
 VERSION := $(shell git rev-list --count master)
-LDFLAGS=-ldflags '-s -w -X main.version=3.${VERSION}'
+LDFLAGS=-ldflags '-s -w -X main.version=4.${VERSION}'
 GOFILES := $(shell ls *.go | grep -v /vendor/)
 ARCH=$(shell uname -m)
 PKGNAME=yay
 
-PACKAGE=${PKGNAME}_3.${VERSION}_${ARCH}
+PACKAGE=${PKGNAME}_4.${VERSION}_${ARCH}
 
 default: build