Skip to content
This repository has been archived by the owner on Mar 22, 2023. It is now read-only.

docker: remove hub package from Fedora Rawhide #977

Merged
merged 2 commits into from
Feb 19, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion utils/docker/images/Dockerfile.fedora-rawhide
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ RUN dnf update -y \
gcc-c++ \
gdb \
git \
hub \
json-c-devel \
kmod-devel \
libtool \
Expand Down
5 changes: 4 additions & 1 deletion utils/docker/run-doc-update.sh
Original file line number Diff line number Diff line change
@@ -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,
Expand Down Expand Up @@ -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} \
Expand Down