diff options
author | Girish Ramakrishnan <girish@cloudron.io> | 2017-03-10 12:22:37 -0800 |
---|---|---|
committer | Girish Ramakrishnan <girish@cloudron.io> | 2017-03-10 12:22:37 -0800 |
commit | 410ee66f248a087ca66d4f6f11aaddc63eaea2b2 (patch) | |
tree | 5145b4d4d19baf5685ad1b11e16e433b9226d062 /cli | |
parent | 4736023d7048ae155971b1947e66070c7f48d675 (diff) | |
download | Surfer-410ee66f248a087ca66d4f6f11aaddc63eaea2b2.tar.gz Surfer-410ee66f248a087ca66d4f6f11aaddc63eaea2b2.tar.zst Surfer-410ee66f248a087ca66d4f6f11aaddc63eaea2b2.zip |
Fix help text
Diffstat (limited to 'cli')
-rwxr-xr-x | cli/surfer.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/surfer.js b/cli/surfer.js index 366d3c5..65773e3 100755 --- a/cli/surfer.js +++ b/cli/surfer.js | |||
@@ -17,12 +17,12 @@ program.command('logout') | |||
17 | .description('Logout from server') | 17 | .description('Logout from server') |
18 | .action(actions.logout); | 18 | .action(actions.logout); |
19 | 19 | ||
20 | program.command('put <file> [files...]') | 20 | program.command('put <file|dir> [files...]') |
21 | .option('-a --all', 'Also include hidden files and folders.', false) | 21 | .option('-a --all', 'Also include hidden files and folders.', false) |
22 | .description('Put a file, last argument is destination if provided') | 22 | .description('Put a file, last argument is destination if provided') |
23 | .action(actions.put); | 23 | .action(actions.put); |
24 | 24 | ||
25 | program.command('get [file]') | 25 | program.command('get [file|dir]') |
26 | .description('Get a file or directory listing') | 26 | .description('Get a file or directory listing') |
27 | .action(actions.get); | 27 | .action(actions.get); |
28 | 28 | ||