mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Don't timestamp strace logs otherwise it runs as anew container each time since the command changes
This commit is contained in:
parent
da7b8b99fb
commit
66fa6a3e2e
1 changed files with 1 additions and 1 deletions
|
@ -28,7 +28,7 @@ module.exports = LatexRunner =
|
|||
return callback new Error("unknown compiler: #{compiler}")
|
||||
|
||||
if Settings.clsi?.strace
|
||||
command = ["strace", "-o", "strace-#{Date.now()}", "-ff"].concat(command)
|
||||
command = ["strace", "-o", "strace", "-ff"].concat(command)
|
||||
|
||||
CommandRunner.run project_id, command, directory, image, timeout, (error, output) ->
|
||||
return callback(error) if error?
|
||||
|
|
Loading…
Reference in a new issue