Browse Source

test: use ! in path

pull/118/head
gmarik 14 years ago
parent
commit
b00c853e2f
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      test/vimrc

+ 2
- 2
test/vimrc 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


Loading…
Cancel
Save