From 7f0caf06833130727b238a2afeb58f3b5096a34c Mon Sep 17 00:00:00 2001 From: Jan Edmund Lazo Date: Wed, 17 Jan 2018 08:02:50 -0500 Subject: Update Windows default command to print relative paths (#1200) --- src/util/util_windows.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/util') diff --git a/src/util/util_windows.go b/src/util/util_windows.go index 67b70318..41a9a5c7 100644 --- a/src/util/util_windows.go +++ b/src/util/util_windows.go @@ -20,7 +20,7 @@ func ExecCommandWith(_shell string, command string) *exec.Cmd { cmd := exec.Command("cmd") cmd.SysProcAttr = &syscall.SysProcAttr{ HideWindow: false, - CmdLine: fmt.Sprintf(` /s /c "%s"`, command), + CmdLine: fmt.Sprintf(` /v:on/s/c "%s"`, command), CreationFlags: 0, } return cmd -- cgit v1.2.3