From 67fb5efa37e3f0a8a91931489818b59028a81ebe Mon Sep 17 00:00:00 2001 From: NissimHadar Date: Sun, 28 Apr 2019 18:25:00 -0700 Subject: [PATCH] Do not always download Qt. --- hifi_vcpkg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hifi_vcpkg.py b/hifi_vcpkg.py index 7bc35b28c3..e1d509b9df 100644 --- a/hifi_vcpkg.py +++ b/hifi_vcpkg.py @@ -240,7 +240,7 @@ endif() def installQt(self): - if True or not os.path.isdir(os.path.join(self.path, 'installed', 'qt5-install')): + if not os.path.isdir(os.path.join(self.path, 'installed', 'qt5-install')): print ("Downloading Qt from AWS ") dest = os.path.join(self.path, 'installed') if platform.system() == 'Windows':