From 4cf0ac549dad676d662a11586b16d05305604c3b Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Mon, 23 Sep 2013 08:01:06 +0300 Subject: [PATCH] htdocs/make.js: rename variable. --- htdocs/make.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/htdocs/make.js b/htdocs/make.js index 93a2e92ae..e17d7f278 100644 --- a/htdocs/make.js +++ b/htdocs/make.js @@ -23,13 +23,13 @@ var fs = require("fs"), cleanCSS = require("clean-css"), UglifyJS = require("uglify-js"), - ROOT_DIR = __dirname + "/"; // absolute path to project's root + rootDir = __dirname + "/"; // absolute path to project's root // // make minify // target.minify = function () { - cd(ROOT_DIR); + cd(rootDir); echo(); echo("### Minifying css files...");