test: use ! in path

This commit is contained in:
gmarik 2011-11-23 00:17:07 -06:00
parent 8640f8c098
commit b00c853e2f

View File

@ -1,12 +1,12 @@
" vim -u test/vimrc
set nocompatible
let root = '/tmp/vundle-test/bundles/'
let root = '/tmp/!vundle-test/bundles/'
let src = 'http://github.com/gmarik/vundle.git'
" let src = '~/.vim/bundle/vundle/.git'
if !isdirectory(expand(root, 1).'/vundle')
exec '!git clone '.src.' '.root.'/vundle'
exec '!git clone '.src.' '.shellescape(root, 1).'/vundle'
endif
filetype off