comparison python/install_config.py @ 137:e12176a453e4

note git global ignore silliness
author Jeff Hammel <jhammel@mozilla.com>
date Thu, 07 Apr 2011 10:23:27 -0700
parents 40b670219789
children 61282540f7c7
comparison
equal deleted inserted replaced
136:a612a16f11a7 137:e12176a453e4
67 67
68 # - ubuntu packages to install: 68 # - ubuntu packages to install:
69 PACKAGES="unison fluxbox antiword xclip graphviz python-dev python-lxml" 69 PACKAGES="unison fluxbox antiword xclip graphviz python-dev python-lxml"
70 print "Ensure the following packages are installed:" 70 print "Ensure the following packages are installed:"
71 print "sudo apt-get install $PACKAGES" 71 print "sudo apt-get install $PACKAGES"
72
73 # setup git's global ignore, since git is silly about this and doesn't look for the file in the right place
74 subprocess.call('if which git; then git config --global core.excludesfile ~/.gitignore; fi', shell=True)