This repository was archived by the owner on Aug 22, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -8,18 +8,21 @@ if exist "C:\InnoSetup" goto strawberry
8
8
9
9
mkdir %INNOSETUP%
10
10
cd %INNOSETUP%
11
+ echo Downloading innosetup-5.5.9-unicode.exe
11
12
appveyor DownloadFile https://github.com/ImageMagick/ImageMagick-Windows/releases/download/20160630/innosetup-5.5.9-unicode.exe
12
13
cd ..
13
14
14
15
:strawberry
15
16
17
+ if " %1 " == " x64" goto x64
18
+
16
19
set STRAWBERRYX86 = C:\Strawberry-x86
17
- if exist %STRAWBERRYX86% goto x64
20
+ if exist %STRAWBERRYX86% goto install
18
21
19
22
mkdir %STRAWBERRYX86%
20
23
cd %STRAWBERRYX86%
24
+ echo Downloading strawberry-perl-5.20.1.1-32bit.msi
21
25
appveyor DownloadFile https://github.com/ImageMagick/ImageMagick-Windows/releases/download/20160630/strawberry-perl-5.20.1.1-32bit.msi
22
- cd ..
23
26
24
27
:x64
25
28
@@ -28,11 +31,12 @@ if exist %STRAWBERRY64% goto install
28
31
29
32
mkdir %STRAWBERRY64%
30
33
cd %STRAWBERRY64%
34
+ echo Downloading strawberry-perl-5.20.1.1-64bit.msi
31
35
appveyor DownloadFile https://github.com/ImageMagick/ImageMagick-Windows/releases/download/20160630/strawberry-perl-5.20.1.1-64bit.msi
32
- cd ..
33
36
34
37
:install
35
38
39
+ cd C:\ImageMagick\AppVeyor
36
40
powershell -ExecutionPolicy Unrestricted .\Install-InnoSetup.ps1
37
41
if " %1 " == " x86" powershell -ExecutionPolicy Unrestricted .\Install-StrawberryPerl-x86.ps1
38
42
if " %1 " == " x64" powershell -ExecutionPolicy Unrestricted .\Install-StrawberryPerl-x64.ps1
You can’t perform that action at this time.
0 commit comments