Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVikas Chandra2019-09-09 06:32:34 +0000
committerNiraj Modi2019-09-09 11:12:04 +0000
commit7e545e26ce061d54ee049b9fbd892ea9c707c679 (patch)
treee33af8e3fc08f8f624df342bf8b1aa5c28a15896 /production/createReports.sh
parentf799415437a92dcd48bfdaa4fc8c7607440d7721 (diff)
downloadeclipse.platform.releng.aggregator-7e545e26ce061d54ee049b9fbd892ea9c707c679.tar.gz
eclipse.platform.releng.aggregator-7e545e26ce061d54ee049b9fbd892ea9c707c679.tar.xz
eclipse.platform.releng.aggregator-7e545e26ce061d54ee049b9fbd892ea9c707c679.zip
Bug 550769 - Update product version number to 4.14 across build scripts
Change-Id: I4601223d0018dd962c249be0dea9b68628085d13 Signed-off-by: Vikas Chandra <Vikas.Chandra@in.ibm.com>
Diffstat (limited to 'production/createReports.sh')
-rwxr-xr-xproduction/createReports.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/production/createReports.sh b/production/createReports.sh
index 4a329ee8b..89bbe9ab5 100755
--- a/production/createReports.sh
+++ b/production/createReports.sh
@@ -66,22 +66,22 @@ function latestSimpleRepo
if [[ ${build_type} == "I" ]]
then
- update_dir_segment="4.13-I-builds"
+ update_dir_segment="4.14-I-builds"
buildIdToCompare="4.13milestones/S-4.13RC2-201909071130"
echo -e "\tlatest_R_build: S-4.13RC2-201909071130"
elif [[ ${build_type} == "Y" ]]
then
- update_dir_segment="4.13-Y-builds"
+ update_dir_segment="4.14-Y-builds"
# Note: we use same value for Y-builds as for I-builds, since conceptually
# they are the same, except that Y-builds use some code from BETA_JAVA12 branch.
- latest_I_build=$(latestSimpleRepo "${repo_root}/4.13-I-builds" "I20*")
+ latest_I_build=$(latestSimpleRepo "${repo_root}/4.14-I-builds" "I20*")
RC=$?
if [[ $RC != 0 ]]
then
exit $RC
fi
echo -e "\tlatest_I_build: $latest_I_build"
- buildIdToCompare="4.13-I-builds/${latest_I_build}"
+ buildIdToCompare="4.14-I-builds/${latest_I_build}"
else
echo -e "\nERROR: Unhandled build type: ${build_type} so update_dir_segment undefined: $update_dir_segment"
echo -e "\n\tand repo reports not produced."

Back to the top