Skip to content

Commit

Permalink
Remove duplicated cwd. Fix #70
Browse files Browse the repository at this point in the history
  • Loading branch information
olafveerman committed Dec 21, 2018
1 parent 449b418 commit 0539e7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ function determineKesClass(options, Kes) {
else {
kesFolder = path.join(process.cwd(), '.kes');
}
Kes = require(`${path.join(process.cwd(), kesFolder, 'kes.js')}`);
Kes = require(`${path.join(kesFolder, 'kes.js')}`);
}
catch (e) {
// check if there is a template and the template has kes class
Expand Down

0 comments on commit 0539e7d

Please sign in to comment.