Skip to content

Commit 949b184

Browse files
author
Vadim Rutkovsky
committed
Ignore errors during submodule init
1 parent d8d7f60 commit 949b184

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

ctf_cli/application.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,10 @@ def run(self):
163163
"""
164164
logger.info("Running Containers Testing Framework cli")
165165

166-
check_call("git submodule update --init", shell=True)
166+
try:
167+
check_call("git submodule update --init", shell=True)
168+
except:
169+
pass
167170

168171
# TODO: Remove this or rework, once more types are implemented
169172
if self._cli_conf.get(

0 commit comments

Comments
 (0)