summaryrefslogtreecommitdiffstats
path: root/pkg/commands/os.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/commands/os.go')
-rw-r--r--pkg/commands/os.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkg/commands/os.go b/pkg/commands/os.go
index fd77f21c7..af0c1be8b 100644
--- a/pkg/commands/os.go
+++ b/pkg/commands/os.go
@@ -2,6 +2,7 @@ package commands
import (
"errors"
+ "fmt"
"os"
"os/exec"
"strings"
@@ -139,6 +140,7 @@ 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, '\'') {