change install to git clone vundle correctly
authorPeng Li <seudut@gmail.com>
Wed, 6 Jan 2016 02:28:57 +0000 (10:28 +0800)
committerPeng Li <seudut@gmail.com>
Wed, 6 Jan 2016 02:34:10 +0000 (10:34 +0800)
vim/install.pl

index af0589c..c6e1d50 100755 (executable)
@@ -1,11 +1,12 @@
 #!/usr/bin/perl -w
 
+## 1. git clone package manager Vundle
 my $vundle_url = "https://github.com/gmarik/Vundle.vim.git";
  
-system "cd bundle";
+chdir "bundle";
 system "git clone " . $vundle_url;
-system "ls -l";
-system "cd ..";
+
+## 2. install pacage
 
 
 #vim --cmd 'echo "aaaa"';