Merge pull request #193 from TheNain38/patch-1

Remove useless assignment in coffee.wsf and fix newlines endings
This commit is contained in:
ZeroNet 2015-10-20 01:25:53 +02:00
commit e8ce26587d
2 changed files with 3 additions and 4 deletions

File diff suppressed because one or more lines are too long

View file

@ -63,7 +63,7 @@ function convert(input, output) {
}
var js = CoffeeScript.compile(coffee);
if (!output) {
WScript.StdOut.Write(js);
}
@ -102,10 +102,9 @@ function writeUtf8(filename, text) {
stream.Close();
stream.Open();
stream.Type = 1; // Binary
stream.Write(binary);
stream.SaveToFile(filename, 2);
stream.Close();
}
</script>
</job>
</job>