We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8d7f60 commit 949b184Copy full SHA for 949b184
ctf_cli/application.py
@@ -163,7 +163,10 @@ def run(self):
163
"""
164
logger.info("Running Containers Testing Framework cli")
165
166
- check_call("git submodule update --init", shell=True)
+ try:
167
+ check_call("git submodule update --init", shell=True)
168
+ except:
169
+ pass
170
171
# TODO: Remove this or rework, once more types are implemented
172
if self._cli_conf.get(
0 commit comments