diff --git a/utils/docker/images/Dockerfile.fedora-rawhide b/utils/docker/images/Dockerfile.fedora-rawhide index 4905608c49..6c399e3aeb 100644 --- a/utils/docker/images/Dockerfile.fedora-rawhide +++ b/utils/docker/images/Dockerfile.fedora-rawhide @@ -44,7 +44,6 @@ RUN dnf update -y \ gcc-c++ \ gdb \ git \ - hub \ json-c-devel \ kmod-devel \ libtool \ diff --git a/utils/docker/run-doc-update.sh b/utils/docker/run-doc-update.sh index 1df6e3d224..36200fff62 100755 --- a/utils/docker/run-doc-update.sh +++ b/utils/docker/run-doc-update.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # SPDX-License-Identifier: BSD-3-Clause -# Copyright 2018-2020, Intel Corporation +# Copyright 2018-2021, Intel Corporation # # run-doc-update.sh - is called inside a Docker container, @@ -86,6 +86,9 @@ git add -A git commit -m "doc: automatic gh-pages docs update" && true git push -f ${ORIGIN} ${GH_PAGES_NAME} +echo "Make sure hub command is available:" +hub --version + echo "Make or update pull request:" # When there is already an open PR or there are no changes an error is thrown, which we ignore. hub pull-request -f -b ${DOC_REPO_OWNER}:gh-pages -h ${BOT_NAME}:${GH_PAGES_NAME} \