From ac97723ec6b25a5869091fd9d0d0c9a14d9e2f3e Mon Sep 17 00:00:00 2001 From: Brian Takita Date: Thu, 30 Sep 2010 19:56:01 -0700 Subject: [PATCH] Creating bundle directory if it does not exist. --- update_bundles.rb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/update_bundles.rb b/update_bundles.rb index 80999df..09c84e8 100755 --- a/update_bundles.rb +++ b/update_bundles.rb @@ -3,6 +3,10 @@ # Jacked most of this from tammer Saleh, thanks dude! # http://tammersaleh.com/posts/the-modern-vim-config-with-pathogen +require 'fileutils' + +FileUtils.mkdir_p("bundle") + git_bundles = [ "git://github.com/astashov/vim-ruby-debugger.git", "git://github.com/msanders/snipmate.vim.git",