log file is a tempfile

- not sure if there's a need for log file in predefined location
- installer is verbose enough to signal errors
This commit is contained in:
gmarik 2011-08-20 20:11:49 -05:00
parent 06480ede43
commit 3f4ed10b55

View File

@ -23,8 +23,8 @@ func! vundle#scripts#complete(a,c,d)
endf endf
func! s:view_log() func! s:view_log()
if !exists('g:vundle_log_file') if !exists('g:vundle_log_file')
let g:vundle_log_file = expand('$HOME/.vim-vundle/vundle.log') let g:vundle_log_file = tempname()
endif endif
call writefile(g:vundle_log, g:vundle_log_file) call writefile(g:vundle_log, g:vundle_log_file)