Skip to content

Commit cd704c9

Browse files
authored
fix: issue with short names after commander issue (#433)
1 parent 00da072 commit cd704c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/program.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export const getProgram = (name: string, description: string) => {
3838
option.long || `--${option.name} ${pre}${option.name}${post}`;
3939

4040
pCommand.option(
41-
short ? `${short}, ${long}` : `,${long}`,
41+
short ? `${short}, ${long}` : `${long}`,
4242
option.description || "",
4343
option.defaultValue,
4444
);

0 commit comments

Comments
 (0)