You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by gn...@apache.org on 2022/05/04 12:48:17 UTC

[maven-mvnd] branch master updated: Fix publish script

This is an automated email from the ASF dual-hosted git repository.

gnodet pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-mvnd.git


The following commit(s) were added to refs/heads/master by this push:
     new 16eaf63  Fix publish script
16eaf63 is described below

commit 16eaf63a6cbd638b3b960fb5776e38c9bcffe47f
Author: Guillaume Nodet <gn...@gmail.com>
AuthorDate: Wed May 4 14:48:00 2022 +0200

    Fix publish script
---
 build/publish.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/build/publish.sh b/build/publish.sh
index 1cc450c..b0f67ac 100755
--- a/build/publish.sh
+++ b/build/publish.sh
@@ -50,7 +50,7 @@ cd ${VERSION}
 
 for dist in darwin-amd64.zip linux-amd64.zip windows-amd64.zip src.zip src.tar.gz
 do
-  FILE=mvnd-${VERSION}-${dist}
+  FILE=maven-mvnd-${VERSION}-${dist}
   shasum -a 256 -b ${FILE} | cut -d ' ' -f 1 > ${FILE}.sha256
   gpg --detach-sign --armor ${FILE}
 done