Use portable shell redirects (see #148)
This commit is contained in:
parent
5efc3cde8a
commit
7ac9370576
@ -409,7 +409,7 @@ function! s:latexmk_build_cmd(data) " {{{1
|
||||
let cmd .= ' >' . tmp
|
||||
let cmd = 'cmd /s /c "' . cmd . '"'
|
||||
else
|
||||
let cmd .= ' &>' . tmp
|
||||
let cmd .= ' >' . tmp . ' 2>&1'
|
||||
endif
|
||||
endif
|
||||
|
||||
|
@ -132,7 +132,7 @@ function! vimtex#util#execute(exe) " {{{1
|
||||
endif
|
||||
else
|
||||
if null
|
||||
let cmd .= ' &>/dev/null'
|
||||
let cmd .= ' >/dev/null 2>&1'
|
||||
endif
|
||||
if bg
|
||||
let cmd .= ' &'
|
||||
|
Loading…
Reference in New Issue
Block a user