Fixed documentation and scripts.

This commit is contained in:
Piotr Tabor
2021-05-16 18:21:53 +02:00
parent 949c1c224b
commit 3f7a038656
7 changed files with 213 additions and 53 deletions

View File

@@ -44,13 +44,14 @@ function package {
if [ "${GOOS}" == "windows" ]; then
ext=".exe"
fi
for bin in etcd etcdctl; do
for bin in etcd etcdctl etcdutl; do
cp "${srcdir}/${bin}" "${target}/${bin}${ext}"
done
cp etcd/README.md "${target}"/README.md
cp etcd/etcdctl/README.md "${target}"/README-etcdctl.md
cp etcd/etcdctl/READMEv2.md "${target}"/READMEv2-etcdctl.md
cp etcd/etcdutl/README.md "${target}"/README-etcdutl.md
cp -R etcd/Documentation "${target}"/Documentation
}