From: Scott Gasch Date: Mon, 31 Oct 2022 22:34:47 +0000 (-0700) Subject: More tweaking of cut_version.sh. X-Git-Url: https://wannabe.guru.org/gitweb/?a=commitdiff_plain;ds=sidebyside;h=fde13060f378bd78a5da7220128cbf8e9ada86dd;p=pyutils.git More tweaking of cut_version.sh. --- diff --git a/cut_version.sh b/cut_version.sh index 00d1c0b..1750956 100755 --- a/cut_version.sh +++ b/cut_version.sh @@ -94,6 +94,12 @@ git rm ${LINK} ln -s ${WHEEL} dist/pyutils-latest-py3-none-any.whl git add ${WHEEL} git add ${LINK} +cd dist/ +for FILE in *.whl; do + md5 ${FILE} > ${FILE}.md5 +done +git add *.md5 +cd .. git commit -a -m "Cut version ${VERSION}" -m "${CHANGES}" echo "Pushing changes to git"