Skip to content

Commit

Permalink
remove useless double check for newTag
Browse files Browse the repository at this point in the history
  • Loading branch information
Spencer Hamm committed May 5, 2021
1 parent 29df201 commit dc5bf05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/git-tag/src/index.ts
Expand Up @@ -51,7 +51,7 @@ export default class GitTagPlugin implements IPlugin {

const prefixedTag = auto.prefixRelease(newTag);

if (dryRun && prefixedTag) {
if (dryRun) {
if (quiet) {
console.log(prefixedTag);
} else {
Expand Down

0 comments on commit dc5bf05

Please sign in to comment.