File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 25
25
26
26
setlocal enableextensions enabledelayedexpansion
27
27
28
- set icu_version = 63_1
28
+ set icu_version_major = 64
29
+ set icu_version_minor = 2
30
+ set icu_version = %icu_version_major% _%icu_version_minor%
31
+ set icu_version_dotted = %icu_version_major% .%icu_version_minor%
29
32
30
33
set " exitOnError = || (exit /b)"
31
34
set current_directory = %~dp0
@@ -87,7 +90,7 @@ endlocal
87
90
setlocal enableextensions enabledelayedexpansion
88
91
89
92
set file_name = icu4c-%icu_version% -Win64-MSVC2017.zip
90
- curl -L -O -z %file_name% " http://download.icu-project.org/files/icu4c/63.1 /%file_name% " %exitOnError%
93
+ curl -L -O -z %file_name% " http://download.icu-project.org/files/icu4c/%icu_version_dotted% /%file_name% " %exitOnError%
91
94
:: unzip warns about the paths in the zip using slashes, which raises the
92
95
:: errorLevel to 1. We cannot use exitOnError, and have to ignore errors.
93
96
unzip -o %file_name% -d " %source_root% \icu-%icu_version% "
You can’t perform that action at this time.
0 commit comments