Skip to content

Commit

Permalink
Fix submodule updating
Browse files Browse the repository at this point in the history
The previous commit broke it completely.
  • Loading branch information
PatZim committed Mar 7, 2020
1 parent 0ae8b4e commit 2f0dd45
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/build/update-submodules.pl
Expand Up @@ -54,11 +54,11 @@
exec_and_check('git', 'fetch', '--quiet', '--all', "Git fetch in $modrefdir failed.");
chdir $back;
}
exec_and_check('git', 'submodule', '--quiet', 'update', '--reference', $modrefdir, $smodpath);
exec_and_check('git', 'submodule', '--quiet', 'update', '--reference', $modrefdir, $smodpath, 'Git submodule update failed.');
}
}
else {
exec_and_check('git', 'submodule', '--quiet', 'update');
exec_and_check('git', 'submodule', '--quiet', 'update', 'Git submodule update failed.');
}

print "OK\n";
Expand Down

0 comments on commit 2f0dd45

Please sign in to comment.