Skip to content
This repository has been archived by the owner on Aug 27, 2024. It is now read-only.

Commit

Permalink
Release 5.24.7
Browse files Browse the repository at this point in the history
  • Loading branch information
choucrifahed committed Aug 7, 2019
1 parent e5129b3 commit 7fb8279
Showing 19 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .env.sample
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@ INSTANCE_ID=platform6-developer-x
PLATFORM6_ROOT=~/platform6/instances

# Supported releases are:
# - 5.24.6
# - 5.24.7
# - 6.0.0-alpha-4
# - 6.0.0-alpha-5
PLATFORM6_VERSION=6.0.0-alpha-5
4 changes: 2 additions & 2 deletions provision_platform6.bat
Original file line number Diff line number Diff line change
@@ -15,7 +15,7 @@ docker rm demobc
docker rm demoexplorer

REM ## Set database version
IF "%PLATFORM6_VERSION%"=="5.24.6" (
IF "%PLATFORM6_VERSION%"=="5.24.7" (
SET PGSQL_VERSION=9.6.1
) ELSE IF %PLATFORM6_VERSION%=="6.0.0-alpha-4" (
SET PGSQL_VERSION=11.2
@@ -51,7 +51,7 @@ IF "%PLATFORM6_VERSION:~-9%"=="-SNAPSHOT" (
REM ## Update application.conf
REM ## Batch scripting does not support logical OR
SET RESULT=FALSE
IF "%PLATFORM6_VERSION%"=="5.24.6" SET RESULT=TRUE
IF "%PLATFORM6_VERSION%"=="5.24.7" SET RESULT=TRUE
IF "%PLATFORM6_VERSION%"=="6.0.0-alpha-4" SET RESULT=TRUE
IF "%PLATFORM6_VERSION%"=="6.0.0-alpha-5" SET RESULT=TRUE
IF "%RESULT%"=="TRUE" (
4 changes: 2 additions & 2 deletions provision_platform6.sh
Original file line number Diff line number Diff line change
@@ -23,7 +23,7 @@ docker rm demobc
docker rm demoexplorer

# Set database version
if [ $PLATFORM6_VERSION == '5.24.6' ]
if [ $PLATFORM6_VERSION == '5.24.7' ]
then
export PGSQL_VERSION='9.6.1'
elif [ $PLATFORM6_VERSION == '6.0.0-alpha-4' ]
@@ -61,7 +61,7 @@ else
fi

# Update application.conf
if [ $PLATFORM6_VERSION == '5.24.6' ] ||
if [ $PLATFORM6_VERSION == '5.24.7' ] ||
[ $PLATFORM6_VERSION == '6.0.0-alpha-4' ] ||
[ $PLATFORM6_VERSION == '6.0.0-alpha-5' ]
then

0 comments on commit 7fb8279

Please sign in to comment.