mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
fix typo in log message
This commit is contained in:
parent
392e96b81d
commit
3c937ce2d4
1 changed files with 1 additions and 1 deletions
|
@ -30,6 +30,6 @@ module.exports = TikzManager =
|
||||||
return callback(error) if error?
|
return callback(error) if error?
|
||||||
fs.readFile path, "utf8", (error, content) ->
|
fs.readFile path, "utf8", (error, content) ->
|
||||||
return callback(error) if error?
|
return callback(error) if error?
|
||||||
logger.log compileDir: compileDir, mainFile: mainFile, "copied file to ouput.tex for tikz"
|
logger.log compileDir: compileDir, mainFile: mainFile, "copied file to output.tex for tikz"
|
||||||
# use wx flag to ensure that output file does not already exist
|
# use wx flag to ensure that output file does not already exist
|
||||||
fs.writeFile Path.join(compileDir, "output.tex"), content, {flag:'wx'}, callback
|
fs.writeFile Path.join(compileDir, "output.tex"), content, {flag:'wx'}, callback
|
||||||
|
|
Loading…
Reference in a new issue