Bug 1083081 - javascript concatenation should insert a semicolon between files

r=dkl a=glob
parent 1f497506
......@@ -575,7 +575,7 @@ sub _concatenate_js {
$content =~ s#\n{2,}#\n#g; # blank lines
$content =~ s#(^\s+|\s+$)##g; # whitespace at the start/end of file
write_file($file, "/* $files{$source} */\n" . $content . "\n");
write_file($file, ";/* $files{$source} */\n" . $content . "\n");
}
push @minified, $file;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment