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

Commit

Permalink
convert []byte to string
Browse files Browse the repository at this point in the history
  • Loading branch information
martinnirtl committed Feb 19, 2020
1 parent 9e6ed40 commit 8441c3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/commands/upcmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ var UpCommand = &cobra.Command{
if doPull {
output, err := envcmd.Pull(envHomeDir, hideCmdOutput, false)
if err != nil && hideCmdOutput {
fmt.Println(output)
fmt.Println(string(output))
utils.Warn("Could not execute 'git pull'.")
} else {
utils.Success(fmt.Sprintf("Pulled environment: %s", activeEnv.GetName()))
Expand Down

0 comments on commit 8441c3e

Please sign in to comment.