Fixed bug in minify pre-setup function

Collect all files from collection instead of last one only
This commit is contained in:
Sergey Fursov 2015-04-28 17:35:55 +03:00
parent a57cb59436
commit b19f166992

View file

@ -35,7 +35,7 @@ def minify(files, outfile, ftype):
for filename in files:
with io.open(getPkgPath() + filename, 'r', encoding='utf8') as f:
content = f.read()
content = content + '\n' + f.read()
data = {
'code': content,