Skip to content

Commit

Permalink
chroe: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
MrGriefs committed Sep 30, 2021
1 parent 3ff8cf0 commit 2426abf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/merger.js
Expand Up @@ -124,7 +124,7 @@ async function merge(paths, options) {
// Move assets
// eslint-disable-next-line no-empty-function
mv(tempPath, options.outputPath, error => {
if (error) throw error
if (error) throw error;
});
}

Expand Down
2 changes: 1 addition & 1 deletion src/util/Util.js
Expand Up @@ -190,7 +190,7 @@ class Util extends null {
fs.unlinkSync(nodePath.join(source, ent.name));
}
}
fs.rmdirSync(source)
fs.rmdirSync(source);
}
}

Expand Down

0 comments on commit 2426abf

Please sign in to comment.