This is an automated email from the ASF dual-hosted git repository. xxyu pushed a commit to branch kylin5 in repository https://gitbox.apache.org/repos/asf/kylin.git
The following commit(s) were added to refs/heads/kylin5 by this push: new 71a527aa1f Minor fix package.sh for download spark/influxdb/grafana 71a527aa1f is described below commit 71a527aa1f4d29b455ecfa60fb800f2cd6be63b3 Author: Mukvin <boyboys...@163.com> AuthorDate: Thu Sep 8 14:20:28 2022 +0800 Minor fix package.sh for download spark/influxdb/grafana --- build/release/package.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build/release/package.sh b/build/release/package.sh index a9aead7167..758ab0f490 100755 --- a/build/release/package.sh +++ b/build/release/package.sh @@ -53,17 +53,17 @@ sh build/release/build.sh $@ || { exit 1; } if [[ "${WITH_SPARK}" = "1" ]]; then echo "BUILD STAGE 3 - Prepare spark..." - sh -x build/apache_release/download-spark.sh || { exit 1; } + sh -x build/release/download-spark.sh || { exit 1; } else rm -rf build/spark fi if [[ "${WITH_THIRDPARTY}" = "1" ]]; then echo "BUILD STAGE 4 - Prepare influxdb..." - sh build/apache_release/download-influxdb.sh || { exit 1; } + sh build/release/download-influxdb.sh || { exit 1; } echo "BUILD STAGE 5 - Prepare grafana..." - sh build/apache_release/download-grafana.sh || { exit 1; } + sh build/release/download-grafana.sh || { exit 1; } echo "BUILD STAGE 6 - Prepare postgresql..." sh build/release/download-postgresql.sh || { exit 1; }