Skip to content

Commit 799d13f

Browse files
author
Cam Pedersen
committed
Merge pull request #10 from jsilvestre/master
Fixed: typo in previous PR
2 parents b69b704 + 2dab91b commit 799d13f

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
@@ -35,7 +35,7 @@ scp.get = function (options, cb) {
3535
'scp',
3636
'-r',
3737
'-P',
38-
(options.port == undefined) ? '22' : options.port),
38+
(options.port == undefined ? '22' : options.port),
3939
(options.user == undefined ? '' : options.user+'@') + options.host + ':' + options.file,
4040
options.path
4141
];

0 commit comments

Comments
 (0)