You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@phoenix.apache.org by ya...@apache.org on 2021/01/16 02:32:50 UTC

[phoenix] branch master updated: PHOENIX-6319 remove cp python logic from the release script

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

yanxinyi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/phoenix.git


The following commit(s) were added to refs/heads/master by this push:
     new f80e221  PHOENIX-6319 remove cp python logic from the release script
f80e221 is described below

commit f80e2218cf255d52a7a5647c0f7754df25ef88ad
Author: Xinyi Yan <ya...@apache.org>
AuthorDate: Fri Jan 15 18:30:33 2021 -0800

    PHOENIX-6319 remove cp python logic from the release script
---
 dev/make_rc.sh | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/dev/make_rc.sh b/dev/make_rc.sh
index f6cd06c..eec2109 100755
--- a/dev/make_rc.sh
+++ b/dev/make_rc.sh
@@ -40,7 +40,6 @@ DIR_BIN=$DIR_REL_BIN_PATH/bin
 DIR_PHERF_CONF=phoenix-pherf/config
 DIR_EXAMPLES=$DIR_REL_BIN_PATH/examples
 DIR_DOCS=dev/release_files
-DIR_PYTHON=$DIR_REL_BIN_PATH/python
 
 # Verify no target exists
 mvn clean; rm -rf $DIR_REL_BASE;
@@ -65,7 +64,6 @@ mkdir $DIR_REL_BIN_TAR_PATH;
 mkdir $DIR_REL_SRC_TAR_PATH;
 mkdir $DIR_EXAMPLES;
 mkdir $DIR_BIN;
-mkdir $DIR_PYTHON;
 
 # Move src tar
 mv $REL_SRC.tar.gz $DIR_REL_SRC_TAR_PATH;
@@ -89,9 +87,6 @@ cp $DIR_DOCS/* $DIR_REL_BIN_PATH;
 # Copy examples
 cp -r examples/* $DIR_EXAMPLES
 
-# Copy the python driver
-cp -r python/* $DIR_PYTHON
-
 # Generate bin tar
 tar cvzf $DIR_REL_BIN_TAR_PATH/$DIR_REL_BIN.tar.gz -C $DIR_REL_ROOT apache-phoenix-$PHOENIX-bin;
 rm -rf $DIR_REL_BIN_PATH;