aboutsummaryrefslogtreecommitdiff
path: root/aux/workflow/dist.sh
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2021-06-22 09:07:49 -0300
committerEuAndreh <eu@euandre.org>2021-06-22 09:07:49 -0300
commit8ed47fc0d2cb02728322620a109140a3c4ef323a (patch)
tree52f4a718cc31fb8044a698557e8f52ac82f8bf5d /aux/workflow/dist.sh
parentpastebin: Auto-add _pastebins/2021-06-22-cloc-curl-and-wget.md (diff)
downloadeuandre.org-8ed47fc0d2cb02728322620a109140a3c4ef323a.tar.gz
euandre.org-8ed47fc0d2cb02728322620a109140a3c4ef323a.tar.xz
aux/: Update
Diffstat (limited to 'aux/workflow/dist.sh')
-rwxr-xr-xaux/workflow/dist.sh7
1 files changed, 4 insertions, 3 deletions
diff --git a/aux/workflow/dist.sh b/aux/workflow/dist.sh
index d0d3e02..ee67f24 100755
--- a/aux/workflow/dist.sh
+++ b/aux/workflow/dist.sh
@@ -3,15 +3,16 @@ set -eu
DATE="$1"
VVERSION="v$2"
-PROJECT="$3"
-MAILING_LIST="$4"
+PROJECT_UC="$3"
+PROJECT="$4"
+MAILING_LIST="$5"
if git show "$VVERSION" 1>/dev/null 2>/dev/null; then
echo "Version '$VVERSION' already exists." >&2
exit 1
fi
-sh aux/workflow/assert-changelog.sh "$PROJECT" "$VVERSION"
+sh aux/workflow/assert-changelog.sh "$PROJECT_UC" "$PROJECT" "$VVERSION"
sh aux/workflow/assert-readme.sh "$PROJECT" "$MAILING_LIST" "$VVERSION"
if [ "$DATE" != "$(git log -1 --format=%cd --date=short HEAD)" ]; then