From 2f0dd45e0f13e0662e0e412fd34f9f489260b26e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20B=C3=B6ker?= Date: Sat, 7 Mar 2020 23:34:57 +0100 Subject: [PATCH] Fix submodule updating The previous commit broke it completely. --- tools/build/update-submodules.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/build/update-submodules.pl b/tools/build/update-submodules.pl index 5fb2c576b34..41e981b7c8e 100755 --- a/tools/build/update-submodules.pl +++ b/tools/build/update-submodules.pl @@ -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";