Skip to content

Commit

Permalink
Create downloads dir if not exists
Browse files Browse the repository at this point in the history
  • Loading branch information
pierotofy committed Mar 21, 2023
1 parent 1d4827d commit 4b3306e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions configure.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 4b3306e

Please sign in to comment.