Skip to content

Commit

Permalink
Fix package script.
Browse files Browse the repository at this point in the history
  • Loading branch information
brocaar committed Aug 30, 2018
1 parent 1256305 commit d1218f3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.PHONY: build clean test package serve run-compose-test
PKGS := $(shell go list ./... | grep -v /vendor/)
VERSION := $(shell git describe --always)
VERSION := $(shell git describe --always |sed -e "s/^v//")

build:
@echo "Compiling source"
Expand Down
4 changes: 2 additions & 2 deletions packaging/package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ PREINSTALL_SCRIPT=$TARGET/pre-install.sh
POSTUNINSTALL_SCRIPT=$TARGET/post-uninstall.sh

LICENSE=MIT
VERSION=`git describe --always`
URL=https://docs.loraserver.io/$NAME/
VERSION=`git describe --always | sed -e "s/^v//"`
URL=https://www.loraserver.io/$NAME/
MAINTAINER=info@brocaar.com
VENDOR="LoRa Server project"
DESCRIPTION="LoRa Gateway Bridge abstracts the packet_forwarder protocol into JSON over MQTT"
Expand Down

0 comments on commit d1218f3

Please sign in to comment.