Skip to content

Commit

Permalink
oopth
Browse files Browse the repository at this point in the history
  • Loading branch information
ethteck committed Sep 8, 2023
1 parent 3ce3405 commit f825921
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/compilers/download.py
Original file line number Diff line number Diff line change
Expand Up @@ -990,7 +990,7 @@ def download_win9x():
dest_name="msvc40",
)
shutil.move(COMPILERS_DIR / "MSVC400-master", COMPILERS_DIR / "msvc4.0")
if not os.path.exists(COMPILERS_DIR / "msvc4.0/BIN"):
if os.path.exists(COMPILERS_DIR / "msvc4.0/BIN"):
shutil.move(COMPILERS_DIR / "msvc4.0/BIN", COMPILERS_DIR / "msvc4.0/Bin")
set_x(COMPILERS_DIR / "msvc4.0/Bin/CL.EXE")

Expand All @@ -999,7 +999,7 @@ def download_win9x():
dest_name="msvc42",
)
shutil.move(COMPILERS_DIR / "MSVC420-master", COMPILERS_DIR / "msvc4.2")
if not os.path.exists(COMPILERS_DIR / "msvc4.2/Bin"):
if os.path.exists(COMPILERS_DIR / "msvc4.2/bin"):
shutil.move(COMPILERS_DIR / "msvc4.2/bin", COMPILERS_DIR / "msvc4.2/Bin")
set_x(COMPILERS_DIR / "msvc4.2/Bin/CL.EXE")

Expand Down

0 comments on commit f825921

Please sign in to comment.