加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build.sh 412 Bytes
一键复制 编辑 原始数据 按行查看 历史
Guillaume Lefranc 提交于 2017-07-05 17:29 . Set verbose build
#!/usr/bin/env sh
BINARY=replication-manager
# These are the values we want to pass for VERSION and BUILD
# git tag 1.0.1
# git commit -am "One more change after the tags"
VERSION=$(git describe --abbrev=0 --tags)
FULLVERSION=$(git describe --tags)
BUILD=$(date +%FT%T%z)
go build -v -ldflags "-w -s -X main.Version=${VERSION} -X main.FullVersion=${FULLVERSION} -X main.Build=${BUILD}" ${LDFLAGS} -o ${BINARY}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化