This is an automated email from the ASF dual-hosted git repository.
vbalaji pushed a commit to branch release-0.5.0
in repository https://gitbox.apache.org/repos/asf/incubator-hudi.git
The following commit(s) were added to refs/heads/release-0.5.0 by this push:
new 789f91e [HUDI-121] Fix issues found during release candidate builds
789f91e is described below
commit 789f91e053146b4d8f37eb01d6fed2b93c6a68b6
Author: Balaji Varadarajan <[email protected]>
AuthorDate: Tue Oct 1 13:59:00 2019 -0700
[HUDI-121] Fix issues found during release candidate builds
---
scripts/release/create_source_release.sh | 4 ++--
scripts/release/deploy_staging_jars.sh | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/scripts/release/create_source_release.sh
b/scripts/release/create_source_release.sh
index b911936..05aa4b9 100755
--- a/scripts/release/create_source_release.sh
+++ b/scripts/release/create_source_release.sh
@@ -29,8 +29,8 @@ set -o nounset
set -o xtrace
CURR_DIR=`pwd`
-if [[ `basename $CURR_DIR` != "release" ]] ; then
- echo "You have to call the script from the release/ dir"
+if [[ `basename $CURR_DIR` != "scripts" ]] ; then
+ echo "You have to call the script from the scripts/ dir"
exit 1
fi
diff --git a/scripts/release/deploy_staging_jars.sh
b/scripts/release/deploy_staging_jars.sh
index 7c067e6..5867f9c 100755
--- a/scripts/release/deploy_staging_jars.sh
+++ b/scripts/release/deploy_staging_jars.sh
@@ -29,8 +29,8 @@ set -o nounset
set -o xtrace
CURR_DIR=`pwd`
-if [[ `basename $CURR_DIR` != "release" ]] ; then
- echo "You have to call the script from the release/ dir"
+if [[ `basename $CURR_DIR` != "scripts" ]] ; then
+ echo "You have to call the script from the scripts/ dir"
exit 1
fi