Browse Source

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.
Yicheng Qin 10 years ago
parent
commit
91e9a24289
1 changed files with 1 additions and 1 deletions
  1. 1 1
      scripts/build-release

+ 1 - 1
scripts/build-release

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