Skip to content
This repository has been archived by the owner on Jun 9, 2022. It is now read-only.

Commit

Permalink
update log messages
Browse files Browse the repository at this point in the history
  • Loading branch information
martinnirtl committed Feb 13, 2020
1 parent d490f7e commit 65ccf50
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion internal/commands/envcmd/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ var initCmd = &cobra.Command{
utils.ErrorAndExit(fmt.Errorf("Initializing environment failed: %s", env))
}

fmt.Printf("%sSet active environment: %s%s\n", chalk.Cyan, env, chalk.ResetColor)
fmt.Printf("%sSet active environment: %s%s(old: %s)\n", chalk.Cyan, env, chalk.ResetColor, oldEnv)
},
}

Expand Down
2 changes: 1 addition & 1 deletion internal/commands/envcmd/pull.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ func Pull(path string, log bool) error {
err := os.Chdir(path)

if err != nil {
return errors.New("could not change working dir")
return errors.New("Could not change working dir")
}

var timebridger externalcommand.Timebridger
Expand Down

0 comments on commit 65ccf50

Please sign in to comment.