We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57ff91c commit af35694Copy full SHA for af35694
Changelog.md
@@ -1,3 +1,7 @@
1
+# v0.2
2
+
3
+* bugfix: add tpl folder to archive
4
5
# v0.1
6
7
* initial implementation
build.sh
@@ -24,6 +24,9 @@ do
24
25
# build
26
CGO_ENABLED=0 GOOS=$goos GOARCH=$goarch go build -ldflags='-s -w' -v -o bin/$goos/$goarch/$name$ext $gofile
27
28
+ # add tpl
29
+ cp -r tpl bin/$goos/$goarch/tpl
30
31
# pack
32
tar cfvz tar/$name-$goos-$goarch.tar.gz -C bin/$goos/$goarch .
0 commit comments