From 6c5b6ce5c1be6e9fb6ac47e3252fc5955f4ac64d Mon Sep 17 00:00:00 2001 From: Baodi Shi Date: Wed, 22 Nov 2023 09:57:24 +0800 Subject: [PATCH] Fix incorrect build.sh script. (#17) --- scripts/build.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/build.sh b/scripts/build.sh index 32b927c..92d9abd 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -2,11 +2,11 @@ set -ex -echo "Releasing connector AWS EventBridge" +echo "Releasing connector ActiveMQ" version=${1#v} if [[ "x$version" == "x" ]]; then - echo "You need give a version number of the connector AWS EventBridge" + echo "You need give a version number of the connector ActiveMQ" exit 1 fi @@ -15,5 +15,5 @@ ASSETS_DIR=release mkdir $ASSETS_DIR mvn clean install -DskipTests -mv target/pulsar-io-aws-eventbridge-*.nar ./$ASSETS_DIR -cp README.md ./$ASSETS_DIR/pulsar-io-aws-eventbridge.md +mv target/pulsar-io-activemq-*.nar ./$ASSETS_DIR +cp README.md ./$ASSETS_DIR/pulsar-io-activemq.md