]> git.immae.eu Git - perso/Immae/Projets/Nodejs/Surfer.git/blobdiff - cli/surfer.js
Fix relative path detection
[perso/Immae/Projets/Nodejs/Surfer.git] / cli / surfer.js
index 15a88b39d602ca0f0446577050a7e7cc0bf54a0e..8920641896cafd986fb0e1880ee72e50154f091e 100755 (executable)
@@ -16,10 +16,11 @@ program.command('login <url>')
 
 program.command('put <file> [files...]')
     .option('-d --destination <folder>', 'Destination folder. This is prepended to the relative <file> path')
+    .option('-a --all', 'Also include hidden files and folders.', false)
     .description('Put a file')
     .action(actions.put);
 
-program.command('get')
+program.command('get [file]')
     .description('Get a file or directory')
     .action(actions.get);