- Properly redirect stdout to /dev/null.

OBS-URL: https://build.opensuse.org/package/show/devel:openSUSE:Factory:rpmlint/rpmlint-mini?expand=0&rev=144
This commit is contained in:
Martin Liška 2021-08-03 07:29:34 +00:00 committed by Git OBS Bridge
parent a2a2eb3c74
commit 8729ca9440
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue Aug 3 07:29:17 UTC 2021 - Martin Liška <mliska@suse.cz>
- Properly redirect stdout to /dev/null.
-------------------------------------------------------------------
Mon Jul 26 06:28:35 UTC 2021 - Steve Kowalik <steven.kowalik@suse.com>

View File

@ -7,8 +7,8 @@ XDG_CONFIG_HOME="/opt/testing/share"
LC_ALL=en_US.utf-8
export PYTHONHOME LD_LIBRARY_PATH LC_ALL XDG_CONFIG_HOME
args=""
if ls /home/abuild/rpmbuild/SOURCES/*rpmlintrc 2>&1 2>/dev/null ; then
for rcfile in /home/abuild/rpmbuild/SOURCES/*rpmlintrc ; do
if ls /home/abuild/rpmbuild/SOURCES/*rpmlintrc &>/dev/null; then
for rcfile in /home/abuild/rpmbuild/SOURCES/*rpmlintrc; do
args="$args -r $rcfile "
done
fi