scripts: not put etcd-migrate into release dir

etcd-migrate has been integrated with etcd, and there is no need to put
it into release dir any more.
This commit is contained in:
Yicheng Qin 2015-04-07 16:04:52 -07:00
parent c66777f80f
commit 91e9a24289

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