From 6e9c33eb51c07494780132cdb898b5b78de2e6bd Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Sat, 12 Nov 2022 11:08:06 -0800 Subject: [PATCH] CI: output more information when installing RPMs This was useful in debugging rpath problems, informing the upcoming commits. So it seems wise to have this always on. --- ci/install-packages.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/install-packages.sh b/ci/install-packages.sh index 1ceacfa5f..0da7ef3cb 100755 --- a/ci/install-packages.sh +++ b/ci/install-packages.sh @@ -38,7 +38,7 @@ if [ "${build_system}" = "cmake" ]; then unzip ${DIR}/Graphviz-${GV_VERSION}-Darwin.zip cp -rp Graphviz-${GV_VERSION}-Darwin/* /usr/local else - rpm --install --force ${DIR}/graphviz-${GV_VERSION}-cmake.rpm + rpm --install --force -vv ${DIR}/graphviz-${GV_VERSION}-cmake.rpm fi else if [ "${ID_LIKE:-}" = "debian" ]; then @@ -51,6 +51,6 @@ else cp -rp build/* /usr/local else tar xvf ${DIR}/graphviz-${GV_VERSION}-rpms.tar.xz - rpm --install --force graphviz-*${GV_VERSION}*.rpm + rpm --install --force -vv graphviz-*${GV_VERSION}*.rpm fi fi -- 2.40.0