From: Daniel P. Berrange Date: Fri, 20 Oct 2017 13:07:48 +0000 (+0100) Subject: scripts: don't throw away stderr when checking out git submodules X-Git-Tag: qemu-xen-4.11.0-rc1~99^2 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=8172bdb2d0c829462f8c4fb2cb54a768d295a747;p=qemu-xen.git scripts: don't throw away stderr when checking out git submodules The stderr from git is important if git fails to checkout modules due to network problems, or other unexpected errors. Signed-off-by: Daniel P. Berrange Reviewed-by: Peter Maydell Message-id: 20171020130748.22983-1-berrange@redhat.com Signed-off-by: Gerd Hoffmann --- diff --git a/scripts/git-submodule.sh b/scripts/git-submodule.sh index d8fbc7e47e..08932a35f0 100755 --- a/scripts/git-submodule.sh +++ b/scripts/git-submodule.sh @@ -32,7 +32,7 @@ status) exit $? ;; update) - git submodule update --init $modules 1>/dev/null 2>&1 + git submodule update --init $modules 1>/dev/null git submodule status $modules > "${substat}" ;; esac