Skip to content

Commit 0861536

Browse files
authored
Merge pull request #3157 from mudhoney/master
fix shell commands debug message for GoRun
2 parents eb583ce + 9161a97 commit 0861536

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: autoload/go/cmd.vim

+1-1
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ function! go#cmd#Run(bang, ...) abort
210210
let &errorformat = s:runerrorformat()
211211

212212
if go#util#HasDebug('shell-commands')
213-
call go#util#EchoInfo('shell command: ' . l:cmd)
213+
call go#util#EchoInfo(printf('shell command: %s', string(l:cmd)))
214214
endif
215215

216216
if l:listtype == "locationlist"

0 commit comments

Comments
 (0)