Skip to content

Commit 72ab031

Browse files
author
Cam Pedersen
committed
Merge pull request #4 from vetrovosk/comma
added missing comma
2 parents 5135568 + 6c09024 commit 72ab031

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)