Compile skwp-CommandT when running yadr-init-plugins

This commit is contained in:
Yan Pritzker 2012-01-11 14:34:24 -08:00
parent da410ec097
commit 7985dce071

View File

@ -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