Skip to content
Snippets Groups Projects
Commit 481e4818 authored by Stéphane Diemer's avatar Stéphane Diemer
Browse files

Pull submodules for ms-testing-suite (refs #24069).

parent 48ab9628
No related branches found
No related tags found
No related merge requests found
...@@ -233,7 +233,10 @@ class Tester(): ...@@ -233,7 +233,10 @@ class Tester():
if os.path.exists(ms_path): if os.path.exists(ms_path):
log('Updating ms-testing-suite in "%s".' % ms_path) log('Updating ms-testing-suite in "%s".' % ms_path)
os.chdir(ms_path) os.chdir(ms_path)
subprocess.check_call(['git', 'pull']) # TODO:
# subprocess.check_call(['git', 'checkout', 'stable'])
subprocess.check_call(['git', 'pull', '--recurse-submodules'])
subprocess.check_call(['git', 'submodule', 'update', '--recursive'])
os.chdir(self.root_dir) os.chdir(self.root_dir)
else: else:
log('Cloning ms-testing-suite in "%s".' % ms_path) log('Cloning ms-testing-suite in "%s".' % ms_path)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment