diff --git a/ci/run_build.sh b/ci/run_build.sh index 84cfcc8..587584c 100755 --- a/ci/run_build.sh +++ b/ci/run_build.sh @@ -9,8 +9,7 @@ set -o nounset # Set path to prioritize our utils export REAL_PATH="${PATH}" -export PATH="${SOURCE_DIR}/ci/util:${PATH}" -echo "PATH IS: $PATH" +export PATH="$(readlink -f "${SOURCE_DIR}")/ci/util:${PATH}" # Build cmake -B"${BUILD_DIR}" -H"${SOURCE_DIR}" @@ -35,3 +34,9 @@ fi # Place files mkdir -p "${DIST_DIR}" cp "${BUILD_DIR}"/tini{,*.rpm,*deb} "${DIST_DIR}" + +# Quick audit +echo "Contents for RPM:" +rpm -qlp "${DIST_DIR}/tini"*.rpm +echo "Contents for DEB:" +dpkg --contents "${DIST_DIR}/tini"*deb