diff --git a/script/amalgamate.py b/script/amalgamate.py index ced3f6bd..35659226 100644 --- a/script/amalgamate.py +++ b/script/amalgamate.py @@ -27,7 +27,10 @@ text = '' for line in lines: - text += '// ' + line.strip() + '\n' + line = line.strip() + if len(line): + line = ' ' + line + text += '//' + line + '\n' processed_files[filename] = text # code