浏览代码

Take into account Windows when writing out the name of nodes

Yentl Van Tendeloo 8 年之前
父节点
当前提交
81d4b80b47
共有 1 个文件被更改,包括 1 次插入0 次删除
  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)