From efd15dc43a09d29244edbd1c27c33a6cebe3e0f7 Mon Sep 17 00:00:00 2001 From: Dale Glass Date: Wed, 6 Jan 2021 20:51:17 +0100 Subject: [PATCH] Make hifi_vcpkg.py use ~/vircadia-files too Makes it consistent with the change made for Qt --- hifi_vcpkg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hifi_vcpkg.py b/hifi_vcpkg.py index fb77fd2507..642ed1253e 100644 --- a/hifi_vcpkg.py +++ b/hifi_vcpkg.py @@ -60,7 +60,7 @@ endif() self.path = args.vcpkg_root self.noClean = True else: - defaultBasePath = os.path.expanduser('~/hifi/vcpkg') + defaultBasePath = os.path.expanduser('~/vircadia-files/vcpkg') self.basePath = os.getenv('HIFI_VCPKG_BASE', defaultBasePath) if self.args.android: self.basePath = os.path.join(self.basePath, 'android')