From 8441c3e43d1fec4ddb2dbfa5dd33c60800d8293b Mon Sep 17 00:00:00 2001 From: Martin Nirtl Date: Wed, 19 Feb 2020 20:16:10 +0100 Subject: [PATCH] convert []byte to string --- internal/commands/upcmd/root.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/commands/upcmd/root.go b/internal/commands/upcmd/root.go index 3cd1a3a..2a5b145 100644 --- a/internal/commands/upcmd/root.go +++ b/internal/commands/upcmd/root.go @@ -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()))