Author: leerho
Date: Sat Oct 12 03:54:32 2024
New Revision: 72281

Log:
mod createDownloadsInclude.sh

Modified:
    dev/datasketches/scripts/createDownloadsInclude.sh

Modified: dev/datasketches/scripts/createDownloadsInclude.sh
==============================================================================
--- dev/datasketches/scripts/createDownloadsInclude.sh (original)
+++ dev/datasketches/scripts/createDownloadsInclude.sh Sat Oct 12 03:54:32 2024
@@ -58,7 +58,7 @@ echo "<!-- Start _includes/$FileName. Co
 echo >> "$FileName"
 echo "$HEAD1" >> "$FileName"
 
-Comp="java cpp python go memory hive pig postgresql"
+Comp="java java17 cpp python go memory memory17 hive pig postgresql"
 for comp in $Comp; do           # for all components
   Rel=$(ls -1 tmp/$comp)
   for rel in $Rel; do           # for all releases
@@ -72,15 +72,16 @@ for comp in $Comp; do           # for al
         Date1="$(svn info --show-item last-changed-date $Filepath)"
         Date="${Date1%.*}Z" #remove microseconds precision. This is Zulu time.
         prefix=
-        if [ $comp = "java" ]; then prefix="Java Core"
+        if [ $comp = "java" ]; then prefix="Java 8,11 Core"
+        elif [ $comp = "java17" ]; then prefix="Java 17 Core"
         elif [ $comp = "cpp" ]; then prefix="C++ Core"
-        elif [ $comp = "cpppy" ]; then prefix="C++, Python Core"
         elif [ $comp = "python" ]; then prefix="Python Core"
         elif [ $comp = "go" ]; then prefix="GO Core"
-        elif [ $comp = "memory" ]; then prefix="Java Memory"
+        elif [ $comp = "memory" ]; then prefix="Java 8,11 Memory"
+        elif [ $comp = "memory17" ]; then prefix="Java 17 Memory"
         elif [ $comp = "hive" ]; then prefix="Java Hive Adaptor"
         elif [ $comp = "pig" ]; then prefix="Java Pig Adaptor"
-        elif [ $comp = "postgresql" ]; then prefix="C++ PostgreSQL Adaptor" 
+        elif [ $comp = "postgresql" ]; then prefix="C++ PostgreSQL Adaptor"
         else 
           echo "Error: could not match component: $comp"
           exit 1



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to