mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 18:55:26 +00:00
chore(rest) "," -> ";"
This commit is contained in:
parent
1847024267
commit
ec68852f4e
1 changed files with 5 additions and 5 deletions
|
|
@ -52,7 +52,7 @@
|
|||
|
||||
apiURL = CloudFunc.apiURL;
|
||||
name = ponse.getPathName(request);
|
||||
regExp = RegExp('^' + apiURL),
|
||||
regExp = RegExp('^' + apiURL);
|
||||
is = regExp.test(name);
|
||||
|
||||
if (!is) {
|
||||
|
|
@ -318,7 +318,7 @@
|
|||
process.stdout.write('\n');
|
||||
|
||||
if (!wasError) {
|
||||
name = path.basename(from),
|
||||
name = path.basename(from);
|
||||
msg = formatMsg(op, name);
|
||||
fn(null, msg);
|
||||
}
|
||||
|
|
@ -354,12 +354,12 @@
|
|||
|
||||
copy = function() {
|
||||
var isLast, name,
|
||||
from = files.from,
|
||||
from = files.from;
|
||||
to = files.to;
|
||||
|
||||
if (names) {
|
||||
isLast = !names.length,
|
||||
name = names.shift(),
|
||||
isLast = !names.length;
|
||||
name = names.shift();
|
||||
from += name;
|
||||
to += name;
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue