Skip to content

Instantly share code, notes, and snippets.

@travisjeffery
Created October 2, 2009 20:00
Show Gist options
  • Save travisjeffery/200063 to your computer and use it in GitHub Desktop.
Save travisjeffery/200063 to your computer and use it in GitHub Desktop.
macvim update script
#!/usr/local/bin/python
"""Pulls MacVim update and installs with configuration."""
import os
vim_repo_path = os.path.abspath("/Users/travis/Documents/repos/macvim/") # location of the macvim git repo
os.chdir(os.path.join(vim_repo_path, "src/"))
os.system("git pull")
os.system("./configure --enable-pythoninterp \
--enable-rubyinterp --enable-perlinterp --enable-cscope --with-features=huge")
os.system("make")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment