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

Commit

Permalink
Updated output message after RPM is built
Browse files Browse the repository at this point in the history
Issue: #13606
  • Loading branch information
eceglov authored and vitallium committed Sep 25, 2015
1 parent be88365 commit b483dd6
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions rpm/mkrpm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,5 @@ rpmbuild --define "_topdir ${topdir}" --buildroot ${buildroot} --clean -bb ${nam
RPMS=(`ls ${topdir}/RPMS/*/*.rpm`)
cp ${topdir}/RPMS/*/*.rpm ${destdir}/
rm -fr ${topdir} ${builddir}
for rpm in "${RPMS[@]}"; do
echo ${TMPDIR:-/tmp}/${rpm##*/}
done
echo -ne "\n=> RPM build completed\n"
for rpm in $(ls ${destdir}/*.rpm); do echo ${rpm}; done

0 comments on commit b483dd6

Please sign in to comment.