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
@@ -92,7 +95,7 @@ endlocal
92
95
setlocal enableextensions enabledelayedexpansion
93
96
94
97
set file_name = icu4c-%icu_version% -Win64-MSVC2017.zip
95
- curl -L -O -z %file_name% " http://download.icu-project.org/files/icu4c/63.1 /%file_name% " %exitOnError%
98
+ curl -L -O -z %file_name% " http://download.icu-project.org/files/icu4c/%icu_version_dotted% /%file_name% " %exitOnError%
96
99
:: unzip warns about the paths in the zip using slashes, which raises the
97
100
:: errorLevel to 1. We cannot use exitOnError, and have to ignore errors.
98
101
unzip -o %file_name% -d " %source_root% \icu-%icu_version% "
You can’t perform that action at this time.
0 commit comments