Use portable shell redirects (see #148)

This commit is contained in:
Karl Yngve Lervåg 2015-04-07 10:06:18 +02:00
parent 5efc3cde8a
commit 7ac9370576
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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 .= ' &'