Skip to content
Snippets Groups Projects
Commit 5c69db8f authored by Johan Helsing's avatar Johan Helsing
Browse files

Add support for custom qtbase rev

parent e883121f
No related branches found
No related tags found
No related merge requests found
......@@ -8,6 +8,12 @@ git fetch --depth 1 origin "$qt5_rev"
git checkout FETCH_HEAD
git submodule update --init -- qtbase qtxmlpatterns qtdeclarative qtwayland
if [[ -v QT_DOCKERTEST_QTBASE_REV ]] ; then
cd "$srcdir/qtbase"
git fetch --depth 1 origin "$QT_DOCKERTEST_QTBASE_REV"
git checkout FETCH_HEAD
fi
if [[ -v QT_DOCKERTEST_QTWAYLAND_REV ]] ; then
cd "$srcdir/qtwayland"
git fetch --depth 1 origin "$QT_DOCKERTEST_QTWAYLAND_REV"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment