# HG changeset patch # User k0s # Date 1267467160 18000 # Node ID 8da594377f18ee4d67489ee6f44b7d0cd2173bcd # Parent 099a3bfa2852da54cf64eb37d6baa795ee6eb48e updates so installation wont break if no .subversion directory diff -r 099a3bfa2852 -r 8da594377f18 python/install_config.py --- a/python/install_config.py Fri Feb 26 13:19:14 2010 -0500 +++ b/python/install_config.py Mon Mar 01 13:12:40 2010 -0500 @@ -19,7 +19,8 @@ ['hg', 'update', '-C'], # site-specific files - ['rm', '.subversion/config'], + ['mkdir', '-p', '.subversion'], + ['rm', '-f', '.subversion/config'], ['ln', '-s', os.path.join(HOME, '.subversion_config/config'), os.path.join(HOME, '.subversion/config')], ]