Mercurial > hg > config
diff python/install_config.py @ 251:c37750a70f94
no need for subversion config anymore
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Tue, 04 Dec 2012 11:02:45 -0800 |
parents | aa31dc7ccb66 |
children | 06fcec56e8fe |
line wrap: on
line diff
--- a/python/install_config.py Sat Dec 01 19:08:58 2012 -0800 +++ b/python/install_config.py Tue Dec 04 11:02:45 2012 -0800 @@ -18,15 +18,10 @@ os.chdir(HOME) commands = [ # make the home directory a repository - ['hg', 'init'], - ['hg', 'pull', SRC], - ['hg', 'update', '-C'], - - # site-specific files - ['mkdir', '-p', '.subversion'], - ['rm', '-f', '.subversion/config'], - ['ln', '-s', os.path.join(HOME, '.subversion_config/config'), os.path.join(HOME, '.subversion/config')], - ] + ['hg', 'init'], + ['hg', 'pull', SRC], + ['hg', 'update', '-C'], + ] def execute(*commands): """execute a series of commands"""