Private GIT

Skip to content
Snippets Groups Projects
Commit 2d5cb79e authored by Dustyn Gibson's avatar Dustyn Gibson
Browse files

Fix submodule init/update on SR update

parent d0bc6caa
Branches
Tags
No related merge requests found
......@@ -575,7 +575,7 @@ class GitUpdateManager(UpdateManager):
output, err, exit_status = self._run_git(self._git_path, 'checkout -f ' + self.branch) # @UnusedVariable
if exit_status == 0:
output, err, exit_status = self._run_git(self._git_path, 'submodule update --init --recursive --force ' + self.branch)
output, err, exit_status = self._run_git(self._git_path, 'submodule update --init --recursive --force')
if exit_status == 0:
self._find_installed_version()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment