modified gitignored for bin and build script
This commit is contained in:
parent
6f43f76247
commit
98b9a407a5
2 changed files with 10 additions and 0 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -16,3 +16,5 @@
|
|||
|
||||
# store test data here
|
||||
test
|
||||
# Compiled binaries
|
||||
bin
|
||||
|
|
8
build.sh
Normal file
8
build.sh
Normal file
|
@ -0,0 +1,8 @@
|
|||
#!/bin/sh
|
||||
go build \
|
||||
-v \
|
||||
-trimpath \
|
||||
-ldflags="-linkmode=external -X main.version=${gmnhg_version}" \
|
||||
-o bin/ \
|
||||
./cmd/gmnhg \
|
||||
./cmd/md2gmn
|
Loading…
Reference in a new issue