fix(build/airflow): Fixing gradlew path (#7069)

This commit is contained in:
Tamas Nemeth 2023-01-18 16:42:05 +01:00 committed by GitHub
parent 4e7faa5503
commit e2250274fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,9 +2,9 @@
set -euxo pipefail
if [[ ! ${RELEASE_SKIP_TEST:-} ]]; then
../gradlew build # also runs tests
../../gradlew build # also runs tests
elif [[ ! ${RELEASE_SKIP_INSTALL:-} ]]; then
../gradlew install
../../gradlew install
fi
MODULE=datahub_airflow_plugin