From afe7a786bd2a75b7c9d36f58856b72b6978ef617 Mon Sep 17 00:00:00 2001 From: Blaise Laflamme Date: Sat, 26 Nov 2011 22:27:43 -0500 Subject: work around for submodule not updating to latest commit --- docs/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/conf.py') 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): -- cgit v1.2.3