Skip to content

Commit

Permalink
make ESLint happy again
Browse files Browse the repository at this point in the history
  • Loading branch information
rse committed Apr 18, 2021
1 parent 6bcc96b commit 3149b87
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vingester-main.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,8 @@ electron.app.on("ready", async () => {
{ iname: "cfg-sample-obsn.yaml", ename: "Sample-OBSN.yaml" }
]
for (const sampleConfig of sampleConfigs) {
let iname = path.join(appPath, sampleConfig.iname)
let ename = path.join(cfgDir, sampleConfig.ename)
const iname = path.join(appPath, sampleConfig.iname)
const ename = path.join(cfgDir, sampleConfig.ename)
if (!(await pathExists(ename)))
await fs.promises.copyFile(iname, ename)
}
Expand Down

0 comments on commit 3149b87

Please sign in to comment.