Remove useless assignment and fix newlines
This commit is contained in:
parent
5bfb38e7d3
commit
c5d6bdee23
2 changed files with 3 additions and 4 deletions
File diff suppressed because one or more lines are too long
|
@ -63,7 +63,7 @@ function convert(input, output) {
|
||||||
}
|
}
|
||||||
|
|
||||||
var js = CoffeeScript.compile(coffee);
|
var js = CoffeeScript.compile(coffee);
|
||||||
|
|
||||||
if (!output) {
|
if (!output) {
|
||||||
WScript.StdOut.Write(js);
|
WScript.StdOut.Write(js);
|
||||||
}
|
}
|
||||||
|
@ -102,10 +102,9 @@ function writeUtf8(filename, text) {
|
||||||
stream.Close();
|
stream.Close();
|
||||||
|
|
||||||
stream.Open();
|
stream.Open();
|
||||||
stream.Type = 1; // Binary
|
|
||||||
stream.Write(binary);
|
stream.Write(binary);
|
||||||
stream.SaveToFile(filename, 2);
|
stream.SaveToFile(filename, 2);
|
||||||
stream.Close();
|
stream.Close();
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
</job>
|
</job>
|
Loading…
Reference in a new issue