1
0

[HUDI-121] Fix bug in validation in create_source_release.sh

This commit is contained in:
Balaji Varadarajan
2019-10-03 09:20:12 -07:00
parent e78ba598c5
commit e75fa070f8

View File

@@ -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