You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by ji...@apache.org on 2017/12/02 19:03:28 UTC

svn commit: r1816980 - /openoffice/devtools/release-scripts/prep-binaries.sh

Author: jim
Date: Sat Dec  2 19:03:27 2017
New Revision: 1816980

URL: http://svn.apache.org/viewvc?rev=1816980&view=rev
Log:
Handle Beta builds... Place in their own unque dir

Modified:
    openoffice/devtools/release-scripts/prep-binaries.sh

Modified: openoffice/devtools/release-scripts/prep-binaries.sh
URL: http://svn.apache.org/viewvc/openoffice/devtools/release-scripts/prep-binaries.sh?rev=1816980&r1=1816979&r2=1816980&view=diff
==============================================================================
--- openoffice/devtools/release-scripts/prep-binaries.sh (original)
+++ openoffice/devtools/release-scripts/prep-binaries.sh Sat Dec  2 19:03:27 2017
@@ -8,9 +8,9 @@ if [ ! -d 'main' ] ; then
   exit 1
 fi
 
-# TODO: Extend to cover other platforms; this is for Linux and macOS only.
+#
 PLATFORMS="unxlngx6.pro unxlngi6.pro unxmaccx.pro wntmsci12.pro"
-PRODUCTS="Apache_OpenOffice Apache_OpenOffice_languagepack Apache_OpenOffice_SDK"
+PRODUCTS="Apache_OpenOffice Apache_OpenOffice_languagepack Apache_OpenOffice_SDK Apache_OpenOffice_Beta"
 DESTINATION="../binaries"
 # For future use.
 # FORMATS=`ls -1 main/instsetoo_native/$PLATFORM/$PRODUCT`
@@ -34,6 +34,8 @@ for PLATFORM in $PLATFORMS; do
         FILENAME=`basename $PACKAGE`
         if [ "$PRODUCT" = "Apache_OpenOffice_SDK" ]; then
           OUTPUT_DIR="$DESTINATION/SDK/"
+        elif [ "$PRODUCT" = "Apache_OpenOffice_Beta" ]; then
+          OUTPUT_DIR="$DESTINATION/Beta/$LANGUAGE/"
         else
           OUTPUT_DIR="$DESTINATION/$LANGUAGE/"
         fi