From 2044fb06556c49af641f2eeaf186eb43f23ceef1 Mon Sep 17 00:00:00 2001 From: Max Deepfield Date: Thu, 24 Jul 2014 14:53:42 +0300 Subject: [PATCH] missing semicolon fix --- Jakefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jakefile b/Jakefile index 981bd8076ff..b5fec190528 100644 --- a/Jakefile +++ b/Jakefile @@ -8,7 +8,7 @@ var compilerDirectory = "src/compiler/"; var servicesDirectory = "src/services/"; var harnessDirectory = "src/harness/"; var libraryDirectory = "src/lib/"; -var scriptsDirectory = "scripts/" +var scriptsDirectory = "scripts/"; var builtDirectory = "built/"; var builtLocalDirectory = "built/local/"; @@ -457,4 +457,4 @@ var perftcPath = "tests/perftc.ts"; var perftcJsPath = "built/local/perftc.js"; compileFile(perftcJsPath, [perftcPath], [tcFile, perftcPath, "tests/perfsys.ts"].concat(libraryTargets), [], true); desc("Builds augmented version of the compiler for perf tests"); -task("perftc", [perftcJsPath]); \ No newline at end of file +task("perftc", [perftcJsPath]);