Skip to content
Snippets Groups Projects
Commit 33b8eb29 authored by Daniel Savchenko's avatar Daniel Savchenko
Browse files

changed '\' to '/' such that Mac does not give warning

parent ecf51701
No related branches found
No related tags found
2 merge requests!265Mac fix,!264Mac fix
...@@ -154,7 +154,7 @@ elif sys.platform == "win32": ...@@ -154,7 +154,7 @@ elif sys.platform == "win32":
message("Error: the folder ../Build has not been found!") message("Error: the folder ../Build has not been found!")
exit(1) exit(1)
src_files = os.listdir("..\Build") src_files = os.listdir("../Build")
for file_name in src_files: for file_name in src_files:
full_file_name = os.path.join("..\Build", file_name) full_file_name = os.path.join("..\Build", file_name)
if os.path.isfile(full_file_name) and full_file_name.endswith(".dll"): if os.path.isfile(full_file_name) and full_file_name.endswith(".dll"):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment