readme typo fix, donation bitcoin address added, force linux mergemedia path slashes, loading screen anim fix

This commit is contained in:
HelloZeroNet 2015-01-13 00:29:40 +01:00
parent ceb8ce6027
commit 4b02417b61
5 changed files with 913 additions and 903 deletions

View file

@ -33,7 +33,7 @@ def merge(merged_path):
# Merge files
parts = []
for file_path in findfiles(merge_dir, find_ext):
parts.append("\n\n/* ---- %s ---- */\n\n" % file_path)
parts.append("\n\n/* ---- %s ---- */\n\n" % file_path.replace("\\", "/"))
if file_path.endswith(".coffee"): # Compile coffee script
if not config.coffeescript_compiler:
logging.error("No coffeescript compiler definied, skipping compiling %s" % merged_path)