We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1256305 commit d1218f3Copy full SHA for d1218f3
Makefile
@@ -1,6 +1,6 @@
1
.PHONY: build clean test package serve run-compose-test
2
PKGS := $(shell go list ./... | grep -v /vendor/)
3
-VERSION := $(shell git describe --always)
+VERSION := $(shell git describe --always |sed -e "s/^v//")
4
5
build:
6
@echo "Compiling source"
packaging/package.sh
@@ -38,8 +38,8 @@ PREINSTALL_SCRIPT=$TARGET/pre-install.sh
38
POSTUNINSTALL_SCRIPT=$TARGET/post-uninstall.sh
39
40
LICENSE=MIT
41
-VERSION=`git describe --always`
42
-URL=https://docs.loraserver.io/$NAME/
+VERSION=`git describe --always | sed -e "s/^v//"`
+URL=https://www.loraserver.io/$NAME/
43
[email protected]
44
VENDOR="LoRa Server project"
45
DESCRIPTION="LoRa Gateway Bridge abstracts the packet_forwarder protocol into JSON over MQTT"
0 commit comments