Skip to content

Commit bde903d

Browse files
committed
Merge pull request workshopper#87 from SomeoneWeird/cleanup
Clean up directory structure
2 parents a95a9f0 + a9d6c6c commit bde903d

31 files changed

Lines changed: 23 additions & 23 deletions

File tree

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

problem.js renamed to lib/problem.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ module.exports = function createProblem(dirname) {
1313
this.problem = getFile(path.join(dirname, 'problem' + postfix + '.md'));
1414
this.solution = getFile(path.join(dirname, 'solution' + postfix + '.md'));
1515
this.solutionPath = path.resolve(dirname, "../../solutions", problemName, "index.js");
16-
this.troubleshootingPath = path.join(dirname, '../../troubleshooting' + postfix + '.md');
16+
this.troubleshootingPath = path.join(dirname, '../../i18n/troubleshooting' + postfix + '.md');
1717
}
1818

1919
exports.verify = function (args, cb) {
File renamed without changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
module.exports = require("../../problem")(__dirname)
1+
module.exports = require("../../lib/problem")(__dirname)

0 commit comments

Comments
 (0)