We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e048887 commit a987bcdCopy full SHA for a987bcd
cmds/cmd_package.py
@@ -442,8 +442,8 @@ def update_submodule(repo_path):
442
cmd = 'git submodule init -q'
443
execute_command(cmd, cwd=repo_path)
444
cmd = 'git submodule update'
445
- if not os.system(cmd):
446
- print("Submodule update successful")
+ execute_command(cmd, cwd=repo_path)
+ print("Submodule update successful")
447
448
449
def get_pkg_folder_by_orign_path(orign_path, version):
0 commit comments