Skip to content

Commit 16b65ed

Browse files
committed
fix(cli): Added verbosity check for notice output
1 parent ee45bd2 commit 16b65ed

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

cli.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,10 @@ conventionalGithubReleaser({
103103
}
104104

105105
if (0 === data.length) {
106-
console.log('No GitHub releases created because no git tags available to work with.');
106+
if (flags.verbose) {
107+
console.log('No GitHub releases created because no git tags available to work with.');
108+
}
109+
107110
process.exit(0);
108111
}
109112

0 commit comments

Comments
 (0)