Merge pull request #2641 from yichengq/fix-build-release

scripts: not put etcd-migrate into release dir
This commit is contained in:
Yicheng Qin
2015-04-08 17:22:18 -07:00

View File

@@ -39,7 +39,7 @@ function package {
if [ ${GOOS} == "windows" ]; then
ext=".exe"
fi
for bin in etcd etcdctl etcd-migrate; do
for bin in etcd etcdctl; do
cp ${srcdir}/${bin} ${target}/${bin}${ext}
done