mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-24 09:40:24 +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
|