Skip to content

Commit

Permalink
fix: mkdir directory failed
Browse files Browse the repository at this point in the history
  • Loading branch information
wangqi committed Apr 1, 2024
1 parent c901e1d commit a88e336
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/docker/build/scaleph-seatunnel/install-plugin.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ if [ -n "$1" ]; then
fi

echo "Install SeaTunnel plugin dependencis"
mkdir ${SEATUNNEL_HOME}/plugins/mysql-cdc/lib
mkdir -p ${SEATUNNEL_HOME}/plugins/mysql-cdc/lib
${SEATUNNEL_HOME}/mvnw dependency:get -DgroupId=mysql -DartifactId=mysql-connector-java -Dversion=8.0.28 -Ddest=${SEATUNNEL_HOME}/plugins/mysql-cdc/lib
mkdir ${SEATUNNEL_HOME}/plugins/jdbc/lib
mkdir -p ${SEATUNNEL_HOME}/plugins/jdbc/lib
${SEATUNNEL_HOME}/mvnw dependency:get -DgroupId=mysql -DartifactId=mysql-connector-java -Dversion=8.0.28 -Ddest=${SEATUNNEL_HOME}/plugins/jdbc/lib

echo "Install SeaTunnel connectors plugins, usage version is ${version}"
Expand Down

0 comments on commit a88e336

Please sign in to comment.