diff options
| author | Blaise Laflamme <blaise@laflamme.org> | 2011-11-26 22:27:43 -0500 |
|---|---|---|
| committer | Blaise Laflamme <blaise@laflamme.org> | 2011-11-26 22:27:43 -0500 |
| commit | afe7a786bd2a75b7c9d36f58856b72b6978ef617 (patch) | |
| tree | f62c855072bd5e90c1131f1445378d0ccc80086e /docs/conf.py | |
| parent | 6a10cd1156095bec367d89d8c13b6a11a5f8c254 (diff) | |
| download | pyramid-afe7a786bd2a75b7c9d36f58856b72b6978ef617.tar.gz pyramid-afe7a786bd2a75b7c9d36f58856b72b6978ef617.tar.bz2 pyramid-afe7a786bd2a75b7c9d36f58856b72b6978ef617.zip | |
work around for submodule not updating to latest commit
Diffstat (limited to 'docs/conf.py')
| -rw-r--r-- | docs/conf.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/conf.py b/docs/conf.py index f751c32e6..874425808 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -52,7 +52,7 @@ if rtd: from subprocess import Popen, PIPE p = Popen('which git', shell=True, stdout=PIPE) git = p.stdout.read().strip() - os.system('rm -Rf docs/_themes; {0} submodule update --init'.format(git)) + os.system('{0} submodule update --init; {0} foreach git pull origin master'.format(git)) os.chdir(wd) for item in os.listdir(parent): |
