Browse Source

[Improvement-14080][script] cleanup dist directory at the beginning of check-LICENSE.sh (#14081)

dependabot/maven/dolphinscheduler-e2e/com.google.guava-guava-32.0.0-jre
Rick Cheng 12 months ago committed by GitHub
parent
commit
0ab2447d58
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      tools/dependencies/check-LICENSE.sh

3
tools/dependencies/check-LICENSE.sh

@ -17,6 +17,9 @@
# limitations under the License.
#
if [ -d "dist" ];then
rm -rf dist
fi
mkdir dist || true
tar -zxf dolphinscheduler-dist/target/apache-dolphinscheduler*-bin.tar.gz --strip=1 -C dist

Loading…
Cancel
Save