From 74144e3892253f72d703e3b324fb8459a0d45369 Mon Sep 17 00:00:00 2001 From: Sascha Andres Date: Mon, 10 Sep 2018 10:10:10 +0200 Subject: [PATCH] fix: remove call to fmt.Println --- pkg/commands/os.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkg/commands/os.go b/pkg/commands/os.go index af0c1be8b..fd77f21c7 100644 --- a/pkg/commands/os.go +++ b/pkg/commands/os.go @@ -2,7 +2,6 @@ package commands import ( "errors" - "fmt" "os" "os/exec" "strings" @@ -140,7 +139,6 @@ func (c *OSCommand) PrepareSubProcess(cmdName string, commandArgs ...string) *ex // Quote wraps a message in platform-specific quotation marks func (c *OSCommand) Quote(message string) string { - fmt.Println(c.Platform.os) message = strings.Replace(message, "`", "\\`", -1) if c.Platform.os == "linux" { if strings.ContainsRune(message, '\'') {