v0.0.184 re-add missing array methods from merge commit 56684b2c0b

This commit is contained in:
2023-07-19 19:29:59 +02:00
parent 1ee127937a
commit d8270e53ed
3 changed files with 165 additions and 7 deletions

View File

@@ -21,6 +21,11 @@ if [ "$( git rev-parse --abbrev-ref HEAD )" != "master" ]; then
exit 1
fi
echo ""
echo -n "Insert optional commit message: "
read commitMessage
echo ""
git pull --ff
go get -u ./...
@@ -38,13 +43,8 @@ printf "package goext\n\nconst GoextVersion = \"%s\"\n\nconst GoextVersionTimest
git add --verbose .
echo -n "Insert option commit message: "
read commitMessage
msg="v${next_ver}"
if [[ "$commitMessage" != "" ]]; then
msg="${msg} ${commitMessage}"
fi