We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae98a2d commit e6d4818Copy full SHA for e6d4818
1 file changed
grunt/helpers/Framework.js
@@ -42,9 +42,9 @@ class Framework {
42
/** @type {string} */
43
this.rootPath = rootPath.replace(/\\/g, '/');
44
45
- this.outputPath = path.join(this.rootPath, outputPath).replace(/\\/g, '/');
+ this.outputPath = path.resolve(this.rootPath, outputPath).replace(/\\/g, '/');
46
47
- this.sourcePath = path.join(this.rootPath, sourcePath).replace(/\\/g, '/');
+ this.sourcePath = path.resolve(this.rootPath, sourcePath).replace(/\\/g, '/');
48
49
this.courseDir = courseDir;
50
/** @type {function} */
0 commit comments