Don't do git command on lib dir, and add latest clangs.

This commit is contained in:
Rene Rivera
2018-05-14 23:07:07 -05:00
parent d7bad38b5d
commit 7c0c1f2cb0
2 changed files with 10 additions and 9 deletions

View File

@ -92,11 +92,9 @@ class script(script_common):
self.repo_dir = os.path.join(self.boost_root,self.repo_path)
if self.repo != 'boost':
utils.check_call("git","submodule","update","--quiet","--init",self.repo_path)
if self.commit:
# Copy in the existing library tree checkout.
os.rmdir(self.repo_path)
shutil.copytree(self.root_dir, self.repo_path)
# Copy in the existing library tree checkout.
os.rmdir(self.repo_path)
shutil.copytree(self.root_dir, self.repo_path)
# Fetch the dependencies for the library we are testing.
if self.repo != 'boost':