mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 10:45:47 +00:00
fix(mellow) convertPath: add slash to end
This commit is contained in:
parent
f03f13f1d3
commit
a41398464c
1 changed files with 3 additions and 0 deletions
|
|
@ -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;
|
||||
}
|
||||
})();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue