Skip to content

Commit 0819036

Browse files
committed
ci: Do not attempt download from not existing URL
It just waste time trying. Signed-off-by: Frediano Ziglio <freddy77@gmail.com>
1 parent edc4e85 commit 0819036

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

misc/appveyor.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,8 +123,7 @@ install:
123123
# if cache doesn't have it, download it
124124
- >
125125
if not exist C:\Windows\gperf.exe (
126-
(curl -L -o %TEMP%\gperf.zip http://kent.dl.sourceforge.net/project/gnuwin32/gperf/3.0.1/gperf-3.0.1-bin.zip && 7z e %TEMP%\gperf.zip -oC:\Windows bin\gperf.exe)
127-
|| (curl -L -o %TEMP%\gperf.zip https://sourceforge.net/projects/gnuwin32/files/gperf/3.0.1/gperf-3.0.1-bin.zip/download# && 7z e %TEMP%\gperf.zip -oC:\Windows bin\gperf.exe)
126+
(curl -L -o %TEMP%\gperf.zip https://sourceforge.net/projects/gnuwin32/files/gperf/3.0.1/gperf-3.0.1-bin.zip/download# && 7z e %TEMP%\gperf.zip -oC:\Windows bin\gperf.exe)
128127
|| (curl -L -o %TEMP%\gperf.zip https://www.freetds.org/gperf-3.0.1-bin.zip && 7z e %TEMP%\gperf.zip -oC:\Windows bin\gperf.exe))
129128
130129
build_script:

0 commit comments

Comments
 (0)