Skip to content

Commit

Permalink
Dep update + errcheck fix (#135)
Browse files Browse the repository at this point in the history
* go dependencies update + errcheck fix

* errcheck fix
  • Loading branch information
godrei authored and BirmacherAkos committed Jun 11, 2018
1 parent e607e3c commit 25e3dcf
Show file tree
Hide file tree
Showing 122 changed files with 15,743 additions and 1,878 deletions.
12 changes: 6 additions & 6 deletions Gopkg.lock

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

2 changes: 1 addition & 1 deletion cli/cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ func before(c *cli.Context) error {
}

func printVersion(c *cli.Context) {
fmt.Fprintf(c.App.Writer, "%v\n", c.App.Version)
fmt.Println(c.App.Version)
}

// Run the Envman CLI.
Expand Down
4 changes: 2 additions & 2 deletions cli/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ func printVersionCmd(c *cli.Context) error {

if output.Format == output.FormatRaw {
if fullVersion {
fmt.Fprintf(c.App.Writer, "version: %v\nbuild_number: %v\ncommit: %v\n", versionOutput.Version, versionOutput.BuildNumber, versionOutput.Commit)
fmt.Printf("version: %v\nbuild_number: %v\ncommit: %v\n", versionOutput.Version, versionOutput.BuildNumber, versionOutput.Commit)
} else {
fmt.Fprintf(c.App.Writer, "%v\n", versionOutput.Version)
fmt.Println(versionOutput.Version)
}
} else {
output.Print(versionOutput, output.Format)
Expand Down
4 changes: 2 additions & 2 deletions vendor/github.com/Sirupsen/logrus/.travis.yml

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

56 changes: 2 additions & 54 deletions vendor/github.com/Sirupsen/logrus/README.md

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

4 changes: 2 additions & 2 deletions vendor/github.com/Sirupsen/logrus/hooks/test/test_test.go

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

57 changes: 57 additions & 0 deletions vendor/github.com/bitrise-io/go-utils/log/defaultlogger.go

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

30 changes: 30 additions & 0 deletions vendor/github.com/bitrise-io/go-utils/log/dummylogger.go

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

5 changes: 5 additions & 0 deletions vendor/github.com/bitrise-io/go-utils/log/print.go

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

4 changes: 2 additions & 2 deletions vendor/github.com/stretchr/testify/assert/assertion_format.go

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

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

40 changes: 24 additions & 16 deletions vendor/github.com/stretchr/testify/assert/assertions.go

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

Loading

0 comments on commit 25e3dcf

Please sign in to comment.