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

kirs pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-seatunnel.git


The following commit(s) were added to refs/heads/dev by this push:
     new 35f72cd51 [Fix][CI] Add remove jar from /tmp/seatunnel-dependencies 
before run
35f72cd51 is described below

commit 35f72cd51a64411a58482c2db7d722a1f956a831
Author: Eric <[email protected]>
AuthorDate: Tue Jul 19 18:41:03 2022 +0800

    [Fix][CI] Add remove jar from /tmp/seatunnel-dependencies before run
---
 tools/dependencies/checkLicense.sh | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/tools/dependencies/checkLicense.sh 
b/tools/dependencies/checkLicense.sh
index 026cdc950..15ee18e39 100755
--- a/tools/dependencies/checkLicense.sh
+++ b/tools/dependencies/checkLicense.sh
@@ -19,6 +19,10 @@
 
 set -e
 
+if [ -d "/tmp/seatunnel-dependencies" ]; then
+  rm -rf /tmp/seatunnel-dependencies/*
+fi
+
 ./mvnw --batch-mode --no-snapshot-updates dependency:copy-dependencies 
-DincludeScope=runtime -DoutputDirectory=/tmp/seatunnel-dependencies -P release
 
 # List all modules(jars) that belong to the SeaTunnel itself, these will be 
ignored when checking the dependency

Reply via email to