From 0d2fb54475cc864e2d6f4463121640e9b64e773f Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 20 Jan 2021 08:57:24 +0530 Subject: [PATCH] fix download URL --- setup/unix-ci.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/unix-ci.py b/setup/unix-ci.py index 1c6a727790..de26fcfa16 100644 --- a/setup/unix-ci.py +++ b/setup/unix-ci.py @@ -88,7 +88,7 @@ def download_and_decompress(url, dest, compression=None): def install_qt_source_code(): dest = os.path.expanduser('~/qt-base') os.mkdir(dest) - download_and_decompress('https://download.calibre-ebook.com/download/qtbase-everywhere-src-5.15.2.tar.xz', dest, 'J') + download_and_decompress('https://download.calibre-ebook.com/qtbase-everywhere-src-5.15.2.tar.xz', dest, 'J') qdir = glob.glob(dest + '/*')[0] os.environ['QT_SRC'] = qdir