diff --git a/setup.py b/setup.py index d943ab6..a60d56c 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,6 @@ def run(self): if path.exists('.git'): subprocess.check_call(['git', 'submodule', 'init']) subprocess.check_call(['git', 'submodule', 'update']) - subprocess.check_call(['git', 'submodule', 'foreach', 'git', 'pull', 'origin', 'master']) build.run(self) class install_with_submodules(install): @@ -17,7 +16,6 @@ def run(self): if path.exists('.git'): subprocess.check_call(['git', 'submodule', 'init']) subprocess.check_call(['git', 'submodule', 'update']) - subprocess.check_call(['git', 'submodule', 'foreach', 'git', 'pull', 'origin', 'master']) install.run(self) setup(