We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10100fb commit 7446383Copy full SHA for 7446383
1 file changed
Makefile
@@ -7,21 +7,22 @@ clean:
7
rm bin/$(_NAME)*
8
9
compile: clean
10
- for os in darwin linux; do \
+ @for os in darwin linux; do \
11
for arch in amd64 arm64; do \
12
cd bin ; \
13
GOOS=$$os GOARCH=$${arch} go build -o $(_NAME)-$$os-$${arch} ../; \
14
tar czf $(_NAME)-$$os-$${arch}.tar.gz $(_NAME)-$$os-$${arch}; \
15
sha256sum $(_NAME)-$$os-$${arch}.tar.gz > $(_NAME)-$$os-$${arch}.tar.gz.sha256; \
16
echo $$os $${arch} compiled; \
17
- cd - ; \
+ cd ../ ; \
18
done \
19
done
20
21
brew-sha256:
22
23
24
25
echo "\"$$os-$${arch}\" => \"$$(sha256sum $(_NAME)-$$os-$${arch}.tar.gz | egrep -o '^\w+')\""; \
26
27
28
0 commit comments