summaryrefslogtreecommitdiff
path: root/tools/template/gulpfile.js
diff options
context:
space:
mode:
Diffstat (limited to 'tools/template/gulpfile.js')
-rw-r--r--tools/template/gulpfile.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/template/gulpfile.js b/tools/template/gulpfile.js
index e03be8dcaf3..d2da47ec388 100644
--- a/tools/template/gulpfile.js
+++ b/tools/template/gulpfile.js
@@ -135,7 +135,7 @@ gulp.task('styles', function() {
/**
* 'gulp pack' will build all targets, then run packify to bundle everything into
- * a single .html file, and save this template in the tools directory.
+ * a single .html file, and save this template in the templates directory.
*/
gulp.task('pack', ['default'], function() {
process.chdir('./' + BUILD)
@@ -144,7 +144,7 @@ gulp.task('pack', ['default'], function() {
}
packify(opts, function (err, packed) {
if (err) return console.error(err);
- fs.writeFileSync('../../wtstats.html.template', packed);
+ fs.writeFileSync('../wtstats.html.template', packed);
});
});