Skip to content

Commit

Permalink
Fix incorrect build.sh script. (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
shibd committed Nov 22, 2023
1 parent 8696524 commit 6c5b6ce
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions scripts/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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

0 comments on commit 6c5b6ce

Please sign in to comment.