Skip to content
This repository was archived by the owner on Aug 22, 2025. It is now read-only.

Commit 5565be0

Browse files
author
dirk
committed
Enabled the AppVeyor proxy and fixed checking of the errorlevel in the batch files.
1 parent d758c95 commit 5565be0

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

AppVeyor/Install.cmd

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ cd ..
44
call CloneRepositories.cmd https://github.com/ImageMagick shallow
55

66
if not exist "C:\Program Files (x86)\Inno Setup 5" choco install innosetup -y -version 5.5.2
7+
if %errorlevel% neq 0 exit /b %errorlevel%
78

89
set OPTION=
910
if "%1" == "x86" SET OPTION=-x86
1011
choco install strawberryperl -y %OPTION% -version 5.20.1.1
12+
if %errorlevel% neq 0 exit /b %errorlevel%

appveyor.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ environment:
5353
im_name: "source"
5454

5555
install:
56+
- ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-http-proxy.ps1'))
5657
- cd AppVeyor
5758
- Install.cmd %im_platform%
5859

0 commit comments

Comments
 (0)