Skip to content

Commit

Permalink
fight me codecov
Browse files Browse the repository at this point in the history
  • Loading branch information
hugopeixoto committed Dec 2, 2020
1 parent 14fe18a commit 9f8cc45
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
5 changes: 4 additions & 1 deletion dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions src/meta.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,9 +104,10 @@ export class Meta {
let main = false;
if (flavor === '') {
main = true;
}
if (this.inputs.mainFlavor) {
} else if (this.inputs.mainFlavor) {
main = true;
} else {
main = false;
}

let tags: Array<string> = [];
Expand Down

0 comments on commit 9f8cc45

Please sign in to comment.