mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-07-26 09:24:07 +00:00
chore(commander) change quotes
This commit is contained in:
parent
d12357f880
commit
e78d45d774
1 changed files with 2 additions and 2 deletions
|
|
@ -21,7 +21,7 @@
|
|||
var isString = Util.isString(path);
|
||||
|
||||
if (!isString)
|
||||
Util.exec(callback, "First parameter should be a string");
|
||||
Util.exec(callback, 'First parameter should be a string');
|
||||
else
|
||||
fs.readdir(path, readDir.bind(null, {
|
||||
callback : callback,
|
||||
|
|
@ -191,7 +191,7 @@
|
|||
for (i = 0; i < n; i++) {
|
||||
current = json[i];
|
||||
|
||||
if (current.size === "dir")
|
||||
if (current.size === 'dir')
|
||||
dirs.push(current);
|
||||
else
|
||||
files.push(current);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue