Skip to content

Commit a7d0222

Browse files
Modified arguments service
1 parent d1c6a75 commit a7d0222

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/services/arguments.service.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ export const argumentsInstance = yargs
1414
.demandOption(['file'])
1515
.alias('o', 'output-folder')
1616
.nargs('output-folder', 1)
17+
.implies('file', 'output-folder')
1718
.describe(
1819
'output-folder',
1920
'Specify the output folder (generated folders will be replaced)',
@@ -24,4 +25,5 @@ export const argumentsInstance = yargs
2425
.default('clean', true)
2526
.help('help')
2627
.alias('h', 'help')
27-
.epilog('copyright 2020').argv;
28+
.epilog('For more info visit: https://github.com/ProtocolNebula/ts-openapi-generator/')
29+
.argv;

0 commit comments

Comments
 (0)