Mercurial > hg > config
view python/install_config.py @ 3:a7188391b4ce
autojoin socialplanning
author | k0s <k0scist@gmail.com> |
---|---|
date | Wed, 28 Oct 2009 12:49:24 -0400 |
parents | f58e8e81e16b |
children | 524f9e7fa224 |
line wrap: on
line source
#!/usr/bin/env python """ installs config to a user's home directory this can be done with curl http://k0s.org/hg/config/python/install-config.py | python """ SRC='http://k0s.org/hg/config' import os os.chdir(os.environ['HOME']) # make the current directory a repository import subprocess subprocess.check_call(['hg', 'init']) subprocess.check_call(['hg', 'pull', SRC]) subprocess.check_call(['hg', 'update', '-C'])