Skip to content

Commit

Permalink
Merge pull request #942 from grez911/master
Browse files Browse the repository at this point in the history
fix issue #936
  • Loading branch information
HelloZeroNet authored May 22, 2017
2 parents 7900578 + a871b5d commit b028eee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Debug/DebugMedia.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def merge(merged_path):
return False # No coffeescript compiler, skip this file

# Replace / with os separators and escape it
file_path_escaped = helper.shellquote(os.path.join(*file_path.split("/")))
file_path_escaped = helper.shellquote(file_path.replace(os.path.sep, "/"))

if "%s" in config.coffeescript_compiler: # Replace %s with coffeescript file
command = config.coffeescript_compiler % file_path_escaped
Expand Down

0 comments on commit b028eee

Please sign in to comment.