mirror of
https://github.com/zeromicro/go-zero.git
synced 2026-05-07 15:10:01 +08:00
8 lines
103 B
Bash
8 lines
103 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
wd=`dirname $0`
|
||
|
|
GOBIN="$GOPATH/bin"
|
||
|
|
EXE=goctl-compare
|
||
|
|
go build -o $EXE $wd
|
||
|
|
mv $EXE $GOBIN
|