Skip to content

Commit f6c5d77

Browse files
chore: tweaks
1 parent 9be69be commit f6c5d77

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/git-helper.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@ export default class GitHelper {
409409
*/
410410
public getTags = async(workDir: string, options?: { quiet?: boolean; suppressOutput?: boolean }): Promise<string[]> => (await this.runCommand(workDir, {
411411
command: 'git tag',
412-
suppressOutput: options?.suppressOutput,
412+
suppressOutput: options?.suppressOutput || options?.quiet,
413413
altCommand: options?.quiet ? '' : undefined,
414414
}))[0].stdout;
415415

0 commit comments

Comments
 (0)