We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c266b0 commit 1257009Copy full SHA for 1257009
.ci/fedora/get_fedora_deps.sh
@@ -6,7 +6,11 @@ set -x
6
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
7
pushd $SCRIPT_DIR
8
9
-dnf -y --setopt=install_weak_deps=False --setopt=tsflags='' \
+# Work around a DNF5 bug with resetting tsflags
10
+# <https://github.com/rpm-software-management/dnf5/issues/1331>.
11
+sed -i -e 's/\<nodocs\>//' /etc/dnf/dnf.conf
12
+
13
+dnf --dump-main-config -y --setopt=install_weak_deps=False --setopt=tsflags='' \
14
--nogpgcheck --quiet install --skip-broken \
15
python3-black \
16
clang \
0 commit comments