You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hudi.apache.org by vb...@apache.org on 2019/10/03 16:20:42 UTC

[incubator-hudi] branch master updated: [HUDI-121] Fix bug in validation in create_source_release.sh

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

vbalaji pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-hudi.git


The following commit(s) were added to refs/heads/master by this push:
     new e75fa07  [HUDI-121] Fix bug in validation in create_source_release.sh
e75fa07 is described below

commit e75fa070f85ed1e0f72f9718a715a08a76679140
Author: Balaji Varadarajan <va...@uber.com>
AuthorDate: Thu Oct 3 09:20:12 2019 -0700

    [HUDI-121] Fix bug in validation in create_source_release.sh
---
 scripts/release/create_source_release.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 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