Skip to content

Commit

Permalink
godeps-update (#121)
Browse files Browse the repository at this point in the history
  • Loading branch information
godrei authored Jun 12, 2017
1 parent e9f05f9 commit dcf6169
Show file tree
Hide file tree
Showing 166 changed files with 40,294 additions and 16,872 deletions.
38 changes: 19 additions & 19 deletions Godeps/Godeps.json

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

4 changes: 2 additions & 2 deletions cli/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package cli
import (
log "github.com/Sirupsen/logrus"
"github.com/bitrise-io/envman/envman"
"github.com/bitrise-io/go-utils/cmdex"
"github.com/bitrise-io/go-utils/command"
"github.com/urfave/cli"
)

Expand All @@ -12,7 +12,7 @@ func initEnvStore(c *cli.Context) error {

clear := c.Bool(ClearKey)
if clear {
if err := cmdex.RemoveFile(envman.CurrentEnvStoreFilePath); err != nil {
if err := command.RemoveFile(envman.CurrentEnvStoreFilePath); err != nil {
log.Fatal("[ENVMAN] - Failed to clear path:", err)
}
}
Expand Down
4 changes: 2 additions & 2 deletions cli/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
log "github.com/Sirupsen/logrus"
"github.com/bitrise-io/envman/envman"
"github.com/bitrise-io/envman/models"
"github.com/bitrise-io/go-utils/cmdex"
"github.com/bitrise-io/go-utils/command"
"github.com/urfave/cli"
)

Expand Down Expand Up @@ -57,7 +57,7 @@ func runCommandModel(cmdModel CommandModel) (int, error) {
return 1, err
}

return cmdex.RunCommandWithEnvsAndReturnExitCode(cmdEnvs, cmdModel.Command, cmdModel.Argumentums...)
return command.RunCommandWithEnvsAndReturnExitCode(cmdEnvs, cmdModel.Command, cmdModel.Argumentums...)
}

func run(c *cli.Context) error {
Expand Down
14 changes: 8 additions & 6 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.

34 changes: 34 additions & 0 deletions vendor/github.com/Sirupsen/logrus/CHANGELOG.md

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

Loading

0 comments on commit dcf6169

Please sign in to comment.