Skip to content

Commit a4908c3

Browse files
committed
add a build script
1 parent 5ffc3bc commit a4908c3

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

gob/build.sh

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#!/bin/sh
2+
3+
set -ex
4+
5+
for svc in gen web word ; do
6+
GOOS=linux GOARCH=amd64 go build -o $svc.linux_amd64 $svc/main.go
7+
GOOS=darwin GOARCH=amd64 go build -o $svc.darwin $svc/main.go
8+
done

0 commit comments

Comments
 (0)