Skip to content

Commit

Permalink
fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronvg committed Nov 20, 2024
1 parent 21068e8 commit 7c891bc
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -425,11 +425,11 @@ class Project {
const fpath = path.join(g.output_dir, f.path_in_output_dir)
const currentTime = new Date()
const newTime = new Date(currentTime.getTime() + 100)
utimes(fpath, newTime, newTime, (err) => {
if (err) {
console.log(`Error setting file times: ${err.message}`)
}
})
utimes(fpath, newTime, newTime, (err) => {
if (err) {
console.log(`Error setting file times: ${err.message}`)
}
})
})
} catch (e) {
if (e instanceof Error) {
Expand Down

0 comments on commit 7c891bc

Please sign in to comment.