From c64b716a07ef3d743a6d1e9d1fec8e190a462662 Mon Sep 17 00:00:00 2001 From: danteruiz Date: Mon, 28 Oct 2019 14:21:19 -0700 Subject: [PATCH] fix hifi_vcpkg.py script crash --- hifi_vcpkg.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hifi_vcpkg.py b/hifi_vcpkg.py index ebecca6226..6ec2184d45 100644 --- a/hifi_vcpkg.py +++ b/hifi_vcpkg.py @@ -273,8 +273,10 @@ endif() url = 'https://hifi-public.s3.amazonaws.com/dependencies/vcpkg/qt5-install-5.12.3-ubuntu-18.04.tar.gz' else: print('UNKNOWN LINUX VERSION!!!') + return; else: print('UNKNOWN OPERATING SYSTEM!!!') + return; print('Extracting ' + url + ' to ' + dest) hifi_utils.downloadAndExtract(url, dest)