We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d9d9f1 commit f640cc2Copy full SHA for f640cc2
Makefile
@@ -18,14 +18,17 @@ test:
18
@go vet $(PKGS)
19
@go test -cover -v $(PKGS)
20
21
+package: clean build
22
+ @echo "Creating package"
23
+ @mkdir -p builds/$(VERSION)
24
+ @cp -R bin/ builds/$(VERSION)/bin
25
+ @cd builds/$(VERSION)/ && tar -pczf ../lora_semtech_bridge_$(VERSION)_linux_amd64.tar.gz .
26
+ @rm -rf builds/$(VERSION)
27
+
28
# shortcuts for development
29
30
serve: build
31
./bin/semtech-bridge
32
-update-vendor:
- @echo "Updating vendored packages"
- @govendor update +external
-
33
run-compose-test:
34
docker-compose run --rm semtechbridge make test
0 commit comments