mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
clean up unnecessary var
This commit is contained in:
parent
4169f7fc73
commit
cee93a0cd9
1 changed files with 1 additions and 2 deletions
|
@ -74,8 +74,7 @@ module.exports = OutputFileFinder = {
|
|||
let fileList = stdout.trim().split('\n')
|
||||
fileList = fileList.map(function (file) {
|
||||
// Strip leading directory
|
||||
let path
|
||||
return (path = Path.relative(directory, file))
|
||||
return Path.relative(directory, file)
|
||||
})
|
||||
callback(null, fileList)
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue