Don't fail build if logging contents fails

pull/3/head
Thomas Orozco 10 years ago
parent 73aabc2a40
commit f9dd36c1c0
  1. 5
      ci/run_build.sh

@ -36,7 +36,12 @@ mkdir -p "${DIST_DIR}"
cp "${BUILD_DIR}"/tini{,*.rpm,*deb} "${DIST_DIR}"
# Quick audit
if which rpm; then
echo "Contents for RPM:"
rpm -qlp "${DIST_DIR}/tini"*.rpm
fi
if which dpkg; then
echo "Contents for DEB:"
dpkg --contents "${DIST_DIR}/tini"*deb
fi

Loading…
Cancel
Save