Skip to content

Commit 6c09024

Browse files
committed
added missing comma
1 parent 5135568 commit 6c09024

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scp.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ scp.send = function (options, cb) {
1414
'scp',
1515
'-r',
1616
'-P',
17-
(options.port == undefined ? '22' : options.port)
17+
(options.port == undefined ? '22' : options.port),
1818
options.file,
1919
(options.user == undefined ? '' : options.user+'@') + options.host + ':' + options.path,
2020
];

0 commit comments

Comments
 (0)