From b72825dedf5b89129de09d470a1737ad24d84799 Mon Sep 17 00:00:00 2001 From: Ryan Cavanaugh Date: Mon, 11 Jun 2018 10:16:10 -0700 Subject: [PATCH] Debugging linux failure --- Jakefile.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Jakefile.js b/Jakefile.js index d21b975e20f..2ff807534de 100644 --- a/Jakefile.js +++ b/Jakefile.js @@ -233,7 +233,8 @@ function compileOutputConfigFile(configFile, prereqs, prefixes, callback) { function compileConfigFile(outFile, prereqs, configFile, prefixes, useBuiltCompiler = false, callback) { const allPrereqs = filesFromConfig(configFile).concat(prereqs || []).concat(configFile); - outFile = outFile.replace(/\//g, "\\"); + outFile = outFile.replace(/\//g, path.sep); + console.log(`Task ${outFile} genned from ${configFile}`); file(outFile, allPrereqs, function () { const startCompileTime = mark(); const compilerPath = useBuiltCompiler ? builtLocalCompiler : LKGCompiler;