From 7985dce071352b76b88f1f615bfb28636e571da3 Mon Sep 17 00:00:00 2001 From: Yan Pritzker Date: Wed, 11 Jan 2012 14:34:24 -0800 Subject: [PATCH] Compile skwp-CommandT when running yadr-init-plugins --- bin/yadr/yadr-init-plugins | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/yadr/yadr-init-plugins b/bin/yadr/yadr-init-plugins index d0bfb222..7793b8b7 100755 --- a/bin/yadr/yadr-init-plugins +++ b/bin/yadr/yadr-init-plugins @@ -10,9 +10,9 @@ short_desc "Initialize all submodules. Run this every time you pull a new yadr v system("cd ~/.dotfiles && git submodule init && git submodule update") # Compile Command-T - if File.directory?(File.expand_path("~/.dotfiles/vim/bundle/wincent-Command-T")) + if File.directory?(File.expand_path("~/.dotfiles/vim/bundle/skwp-Command-T")) puts "Compiling Command-T plugin..." - system("cd ~/.dotfiles/vim/bundle/wincent-Command-T && rake make") + system("cd ~/.dotfiles/vim/bundle/skwp-Command-T && rake make") end end