diff options
author | James Ross-Gowan <rossy@jrg.systems> | 2017-12-09 20:01:54 +1100 |
---|---|---|
committer | James Ross-Gowan <rossy@jrg.systems> | 2017-12-09 20:01:54 +1100 |
commit | 1d7a746505a2a5ec0392e0c8a6c1ddd0c7133baa (patch) | |
tree | fe9ca61172f3d5482fb019bca02ec163c9c76ae2 | |
parent | 6ab7e0d465d30a68bf24a0cafeea9b3366dd3e99 (diff) |
appveyor: fix FFmpeg download
Broken in f19797dea62a. It seems like the Git server on git.ffmpeg.org
doesn't like clone --depth=1, so use the GitHub mirror instead.
-rwxr-xr-x | TOOLS/appveyor-install.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/TOOLS/appveyor-install.sh b/TOOLS/appveyor-install.sh index 6ea861b5af..7c0a345ebe 100755 --- a/TOOLS/appveyor-install.sh +++ b/TOOLS/appveyor-install.sh @@ -29,7 +29,7 @@ pacman -Sc --noconfirm # Compile ffmpeg ( - git clone --depth=1 https://git.ffmpeg.org/ffmpeg.git && cd ffmpeg + git clone --depth=1 https://github.com/FFmpeg/ffmpeg.git && cd ffmpeg mkdir build && cd build ../configure \ |