fix(mellow) convertPath: add slash to end

This commit is contained in:
coderaiser 2014-06-23 21:15:24 +03:00
parent f03f13f1d3
commit a41398464c

View file

@ -8,6 +8,7 @@
Util = require(DIR + 'util'),
win = require(DIR_SERVER + 'win'),
format = require(DIR_SERVER + 'format'),
commander = require(DIR_SERVER + 'commander');
exports.read = read;
@ -55,6 +56,8 @@
path = volume + ':' + path;
}
path = format.addSlashToEnd(path);
return path;
}
})();