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 .= ' >' . tmp
|
||||||
let cmd = 'cmd /s /c "' . cmd . '"'
|
let cmd = 'cmd /s /c "' . cmd . '"'
|
||||||
else
|
else
|
||||||
let cmd .= ' &>' . tmp
|
let cmd .= ' >' . tmp . ' 2>&1'
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
@ -132,7 +132,7 @@ function! vimtex#util#execute(exe) " {{{1
|
|||||||
endif
|
endif
|
||||||
else
|
else
|
||||||
if null
|
if null
|
||||||
let cmd .= ' &>/dev/null'
|
let cmd .= ' >/dev/null 2>&1'
|
||||||
endif
|
endif
|
||||||
if bg
|
if bg
|
||||||
let cmd .= ' &'
|
let cmd .= ' &'
|
||||||
|
Loading…
Reference in New Issue
Block a user