Skip to content

Commit

Permalink
Add Rakefile to install/update submodules
Browse files Browse the repository at this point in the history
  • Loading branch information
flomotlik committed Jun 1, 2012
1 parent b922f61 commit efe1c91
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Rakefile
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,11 @@
desc "Install or Update Vim-Livereload."
task :default do
puts "Pulling latest changes"
`git pull > /dev/null`

puts "Synchronising submodules urls"
`git submodule sync > /dev/null`

puts "Updating the submodules"
`git submodule update --init > /dev/null`
end

0 comments on commit efe1c91

Please sign in to comment.