You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@phoenix.apache.org by mu...@apache.org on 2014/08/11 23:40:55 UTC

git commit: Update make_rc.sh script with TLP related changes

Repository: phoenix
Updated Branches:
  refs/heads/4.0 64d136d15 -> 2ed929a75


Update make_rc.sh script with TLP related changes


Project: http://git-wip-us.apache.org/repos/asf/phoenix/repo
Commit: http://git-wip-us.apache.org/repos/asf/phoenix/commit/2ed929a7
Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/2ed929a7
Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/2ed929a7

Branch: refs/heads/4.0
Commit: 2ed929a75bbb8f786cc220c6dab9a837a1aa8cdf
Parents: 64d136d
Author: Mujtaba <mu...@apache.org>
Authored: Mon Aug 11 14:40:47 2014 -0700
Committer: Mujtaba <mu...@apache.org>
Committed: Mon Aug 11 14:40:47 2014 -0700

----------------------------------------------------------------------
 dev/make_rc.sh | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/phoenix/blob/2ed929a7/dev/make_rc.sh
----------------------------------------------------------------------
diff --git a/dev/make_rc.sh b/dev/make_rc.sh
index 9081f77..e6f9cbd 100755
--- a/dev/make_rc.sh
+++ b/dev/make_rc.sh
@@ -70,6 +70,7 @@ mv $REL_SRC.tar.gz $DIR_REL_SRC_TAR_PATH;
 
 # Copy common jars
 mvn clean apache-rat:check package -DskipTests;
+rm -rf $(find . -type d -name archive-tmp);
 cp $(find -iname phoenix-$PHOENIX-client-minimal.jar) $DIR_COMMON;
 cp $(find -iname phoenix-$PHOENIX-client-without-hbase.jar) $DIR_COMMON;
 cp $(find -iname phoenix-core-$PHOENIX.jar) $DIR_COMMON;
@@ -80,7 +81,6 @@ cp $(find -iname phoenix-pig-$PHOENIX-tests.jar) $DIR_COMMON;
 
 # Copy release docs
 cp CHANGES $DIR_REL_BIN_PATH;
-cp DISCLAIMER $DIR_REL_BIN_PATH;
 cp README $DIR_REL_BIN_PATH;
 cp $DIR_DOCS/* $DIR_REL_BIN_PATH;
 
@@ -93,6 +93,7 @@ function_copy_hadoop_specific_jars() {
   mkdir $DIR_HADOOP$1/$DIR_BIN;
   cp $DIR_BIN/* $DIR_HADOOP$1/$DIR_BIN;
   cp $(find -iname phoenix-$PHOENIX-client.jar) $DIR_HADOOP$1/phoenix-$PHOENIX-client-hadoop$1.jar;
+  cp $(find -iname phoenix-$PHOENIX-server.jar) $DIR_HADOOP$1/phoenix-$PHOENIX-server-hadoop$1.jar;
   cp $(find -iname phoenix-core-$PHOENIX-tests.jar) $DIR_HADOOP$1/phoenix-core-$PHOENIX-tests-hadoop$1.jar;
 }
 function_copy_hadoop_specific_jars 1;
@@ -123,11 +124,11 @@ read -p "Do you want add tag for this RC in GIT? (Y for yes or any other key to
 if [[ $prompt =~ [yY](es)* ]]
 then
   echo "Tagging..."
-  read -p "Enter tag (Example 5.0.0-incubating-rc0):" prompt
+  read -p "Enter tag (Example 5.0.0-rc0):" prompt
   echo "Setting tag: $prompt";sleep 5s
   git tag -a $prompt -m "$prompt"; git push origin $prompt
   mv $DIR_REL_ROOT $DIR_REL_BASE/phoenix-$prompt
 fi
 
 echo "DONE."
-echo "If all looks good in release directory then commit RC at https://dist.apache.org/repos/dist/dev/incubator/phoenix"
+echo "If all looks good in release directory then commit RC at https://dist.apache.org/repos/dist/dev/phoenix"