Browse Source

Take into account Windows when writing out the name of nodes

Yentl Van Tendeloo 8 years ago
parent
commit
81d4b80b47
1 changed files with 1 additions and 0 deletions
  1. 1 0
      bootstrap/bootstrap.py

+ 1 - 0
bootstrap/bootstrap.py

@@ -252,6 +252,7 @@ def bootstrap():
                 # Compile all files and add to structure manually
                 for bootstrap_file in bootstrap_files:
                     # Compile the subfile
+                    bootstrap_file = bootstrap_file.replace("\\", "/")
                     print("[COMP] %s" % bootstrap_file)
                     symbols = {}
                     result = compile_code_AL(bootstrap_file, "initial_IP", prepend=bootstrap_file, is_file=True, symbols=symbols)