mirror of
				https://github.com/ohmyzsh/ohmyzsh.git
				synced 2025-11-04 21:31:19 +08:00 
			
		
		
		
	If you are using a submodule, ~/.vim/bundle/vundle/.git is a file, not a directory. So I changed the test for that.
		
			
				
	
	
		
			28 lines
		
	
	
		
			628 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			628 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
function vundle-init () {
 | 
						|
  if [ ! -d ~/.vim/bundle/vundle/ ]
 | 
						|
  then
 | 
						|
    mkdir -p ~/.vim/bundle/vundle/
 | 
						|
  fi
 | 
						|
 | 
						|
  if [ ! -d ~/.vim/bundle/vundle/.git ] && [ ! -f ~/.vim/bundle/vundle/.git ]
 | 
						|
  then
 | 
						|
    git clone http://github.com/gmarik/vundle.git ~/.vim/bundle/vundle
 | 
						|
    echo "\n\tRead about vim configuration for vundle at https://github.com/gmarik/vundle\n"
 | 
						|
  fi
 | 
						|
}
 | 
						|
 | 
						|
function vundle () {
 | 
						|
  vundle-init
 | 
						|
  vim -c "execute \"BundleInstall\" | q | q"
 | 
						|
}
 | 
						|
 | 
						|
function vundle-update () {
 | 
						|
  vundle-init
 | 
						|
  vim -c "execute \"BundleInstall!\" | q | q"
 | 
						|
}
 | 
						|
 | 
						|
function vundle-clean () {
 | 
						|
  vundle-init
 | 
						|
  vim -c "execute \"BundleClean!\" | q | q"
 | 
						|
}
 |