Skip to content

Commit 0d3bb1e

Browse files
aligned commands with PRD
1 parent 3774360 commit 0d3bb1e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/commander/upload.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ command
1919
.option('-F, --files <extensions>', 'Comma-separated list of allowed file extensions', val => {
2020
return val.split(',').map(ext => ext.trim().toLowerCase());
2121
})
22-
.option('-E, --ignoreStripExtensions', 'Strips file extensions from snapshot names')
23-
.option('-i, --ignorePattern <patterns>', 'Comma-separated list of directories to ignore', val => {
22+
.option('-E, --removeExtensions', 'Strips file extensions from snapshot names')
23+
.option('-i, --ignoreDir <patterns>', 'Comma-separated list of directories to ignore', val => {
2424
return val.split(',').map(pattern => pattern.trim());
2525
})
2626
.action(async function(directory, _, command) {

0 commit comments

Comments
 (0)