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:43:11 UTC

[incubator-hudi] branch master updated: [HUDI-121] Fix bug in validation in deploy_staging_jars.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 cef06c1  [HUDI-121] Fix bug in validation in deploy_staging_jars.sh
cef06c1 is described below

commit cef06c1e4849ea93644c17af89b56b3f17d322fc
Author: Balaji Varadarajan <va...@uber.com>
AuthorDate: Thu Oct 3 09:42:30 2019 -0700

    [HUDI-121] Fix bug in validation in deploy_staging_jars.sh
---
 scripts/release/deploy_staging_jars.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

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