Browse Source

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
pull/86/merge
gmarik 15 years ago
parent
commit
3f4ed10b55
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      autoload/vundle/scripts.vim

+ 2
- 2
autoload/vundle/scripts.vim View File

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


Loading…
Cancel
Save