8000 Merge branch 'prototypeAsync' of https://github.com/Microsoft/TypeScr… · ezhangle/TypeScript@7f6ea09 · GitHub
[go: up one dir, main page]

Skip to content

Commit 7f6ea09

Browse files
committed
Merge branch 'prototypeAsync' of https://github.com/Microsoft/TypeScript into prototypeAsync
2 parents e1bc0bd + dd6bc44 commit 7f6ea09

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Jakefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ function concatenateFiles(destinationFile, sourceFiles) {
183183
fail(sourceFiles[i] + " does not exist!");
184184
}
185185
fs.appendFileSync(temp, fs.readFileSync(sourceFiles[i]));
186-
}
186+
}
187187
// Move the file to the final destination
188188
fs.renameSync(temp, destinationFile);
189189
}
@@ -292,8 +292,8 @@ for (var i in libraryTargets) {
292292
// tslib
293293
var tslibSource = path.join(libraryDirectory, "tslib.js");
294294
var tslibTarget = path.join(builtLocalDirectory, "tslib.js");
295-
file(tslibTarget, [copyright, tslibSource], function() {
296-
concatenateFiles(tslibTarget, [copyright, tslibSource]);
295+
file(tslibTarget, [builtLocalDirectory, copyright, tslibSource], function() {
296+
concatenateFiles(tslibTarget, [copyright, tslibSource]);
297297
})
298298

299299
// Lib target to build the library files

0 commit comments

Comments
 (0)
0