build: mkrpm.sh: remove --quiet from rpmbuild

To make the CI logs more informative, as currently nothing from the
build itself is shown.

Added on commit d684d9988 ("Fix mkrpm.sh", 2016-02-16) / PR #297.
This commit is contained in:
Kelvin M. Klann 2024-02-07 01:30:12 -03:00
parent 6815d71cff
commit 0edc987645

View file

@ -47,7 +47,7 @@ tar --exclude='./.git*' --transform "s/^./${name}-${version}/" \
-czf "${tmpdir}/SOURCES/${name}-${version}.tar.gz" .
# Build the files (rpm, debug rpm and source rpm)
rpmbuild --quiet --define "_topdir ${tmpdir}" -ba "${tmp_spec_file}"
rpmbuild --define "_topdir ${tmpdir}" -ba "${tmp_spec_file}"
# Copy the results to cwd
mv "${tmpdir}/SRPMS"/*.rpm "${tmpdir}/RPMS"/*/*rpm .