Skip to content

Commit

Permalink
Fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
amad-person committed Mar 26, 2019
1 parent d6e6033 commit 020c49d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/fsUtil.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ module.exports = {
return r.test(unknownPath);
},

setExtension: (normalizedFilename, ext) => this.removeExtension(normalizedFilename) + ext,
setExtension: (normalizedFilename, ext) => module.exports.removeExtension(normalizedFilename) + ext,

removeExtension: (filePathWithExt) => {
path.join(
Expand Down

0 comments on commit 020c49d

Please sign in to comment.