Guest User

Untitled

a guest
May 25th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. def update_vimbundles
  2. Dir.glob("#{ENV['HOME']}/.vimbundles/*").each do |d|
  3. next unless File.directory?(d)
  4. puts "updating #{d}"
  5. `cd #{d}; git pull --rebase; cd -`
  6. end
  7. end
Add Comment
Please, Sign In to add comment