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 2a581b8 commit c8b0d49Copy full SHA for c8b0d49
Makefile
@@ -9,7 +9,7 @@ else
9
endif
10
11
12
-TAG := "v1.1.0"
+TAG := "v1.0.1"
13
OS_LIST := windows darwin linux
14
ARCH_LIST := 386 amd64 arm64
15
@@ -44,12 +44,14 @@ install:
44
gen_releases:
45
@for os in $(OS_LIST); do \
46
for arch in $(ARCH_LIST); do \
47
- echo "Build for $$os $$arch"; \
+ exe=bbx-$$os-$$arch-$(TAG); \
48
export GOOS=$$os GOARCH=$$arch; \
49
if [ "$$os" = "windows" ]; then \
50
- go build -o releases/bbx-$$os-$$arch.exe; \
+ echo "$$exe".exe; \
51
+ go build -o releases/$$exe.exe; \
52
else \
- go build -o releases/bbx-$$os-$$arch; \
53
+ echo "$$exe"; \
54
+ go build -o releases/$$exe; \
55
fi; \
56
done ; \
57
done
0 commit comments