From 4b3306ec9e1bd9d4b58771ec9b58eeec343b4726 Mon Sep 17 00:00:00 2001 From: Piero Toffanin Date: Tue, 21 Mar 2023 16:01:35 -0400 Subject: [PATCH] Create downloads dir if not exists --- configure.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configure.py b/configure.py index dc939f50..7b722b4b 100644 --- a/configure.py +++ b/configure.py @@ -139,6 +139,9 @@ def dist(): print("You need to run configure.py build before you can run dist") exit(1) + if not os.path.exists("SuperBuild\\download"): + os.mkdir("SuperBuild\\download") + # Download VC++ runtime vcredist_path = os.path.join("SuperBuild", "download", "vc_redist.x64.zip") if not os.path.isfile(vcredist_path):