Skip to content

Commit

Permalink
Add fixups from PR review 2
Browse files Browse the repository at this point in the history
  • Loading branch information
Arvind Iyengar committed May 14, 2021
1 parent 840c25d commit 5e9498f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ func generateCharts(c *cli.Context) {
}
currentBranchRefName, err := repository.GetCurrentBranchRefName(repo)
if err != nil {
logrus.Warnf("Due to limitations in the Git library used for the scripts, we cannot generate charts in a detached HEAD state.")
logrus.Warn("Due to limitations in the Git library used for the scripts, we cannot generate charts in a detached HEAD state.")
logrus.Fatalf("Could not get reference to current branch: %s", err)
}
// Generate charts
Expand Down Expand Up @@ -280,7 +280,7 @@ func getPackages() []*charts.Package {
logrus.Fatal(err)
}
if len(packages) == 0 {
logrus.Fatalf("Could not find any packages in packages/")
logrus.Fatal("Could not find any packages in packages/")
}
return packages
}
Expand Down

0 comments on commit 5e9498f

Please sign in to comment.