Skip to content

Instantly share code, notes, and snippets.

@rbxbx
Created May 12, 2010 18:16
Show Gist options
  • Save rbxbx/398923 to your computer and use it in GitHub Desktop.
Save rbxbx/398923 to your computer and use it in GitHub Desktop.
def update_vimbundles
Dir.glob("#{ENV['HOME']}/.vimbundles/*").each do |d|
next unless File.directory?(d)
puts "updating #{d}"
`cd #{d}; git pull --rebase; cd -`
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment