Commit 8172bdb2 authored by Daniel P. Berrangé's avatar Daniel P. Berrangé Committed by Gerd Hoffmann
Browse files

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: default avatarDaniel P. Berrange <berrange@redhat.com>
Reviewed-by: default avatarPeter Maydell <peter.maydell@linaro.org>
Message-id: 20171020130748.22983-1-berrange@redhat.com
Signed-off-by: default avatarGerd Hoffmann <kraxel@redhat.com>
parent 2fb6eeac
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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