Skip to content

Commit 20fdec5

Browse files
committed
add 13.1 support for issue #5
1 parent b9440c5 commit 20fdec5

1 file changed

Lines changed: 11 additions & 3 deletions

File tree

scripts/SetupLinux4Delphi.sh

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@ while [[ $# -gt 0 ]]; do
5252
echo " manager = apt, pacman, dnf, or yum (force specific package manager)"
5353
echo ""
5454
echo "Where [version] is one of the following:"
55-
echo " 37.0, 13.0 = Florence 13.0 [DEFAULT]"
55+
echo " 37.0, 13.1 = Florence 13.1 [DEFAULT]"
56+
echo " 13.0 = Florence 13.0"
5657
echo " 23.0, 12.3, 12 = Athens 12.3"
5758
echo " 12.2 = Athens 12.2"
5859
echo " 12.1 = Athens 12.1"
@@ -83,7 +84,8 @@ case "$PARAM" in
8384
echo "Usage: sudo SetupUbuntu4Delphi.sh [version]"
8485
echo ""
8586
echo "Where [version] is one of the following:"
86-
echo " 37.0, 13.0 = Florence 13.0 [DEFAULT]"
87+
echo " 37.0, 13.1 = Florence 13.1 [DEFAULT]"
88+
echo " 13.0 = Florence 13.0"
8789
echo " 23.0, 12.3, 12 = Athens 12.3"
8890
echo " 12.2 = Athens 12.2"
8991
echo " 12.1 = Athens 12.1"
@@ -103,10 +105,16 @@ case "$PARAM" in
103105
exit 0
104106
;;
105107
# Florence
106-
"37.0"|"13.0"|"florence")
108+
"37.0"|"13.1"|"florence")
107109
COMPILER="37.0"
110+
PRODUCT="13.1"
108111
RELEASE="Florence"
112+
PASERVER_URL="http://altd.embarcadero.com/releases/studio/37.0/131/LinuxPAServer37.0.tar.gz"
113+
;;
114+
"13.0")
115+
COMPILER="37.0"
109116
PRODUCT="13.0"
117+
RELEASE="Florence"
110118
PASERVER_URL="http://altd.embarcadero.com/releases/studio/37.0/130/LinuxPAServer37.0.tar.gz"
111119
;;
112120
# Athens

0 commit comments

Comments
 (0)