From 398a42634f34afa1979d88ae1d8b38194e911c2d Mon Sep 17 00:00:00 2001 From: David Seifert Date: Wed, 11 Dec 2019 13:32:00 +0100 Subject: */*: [QA] Remove redundant `|| die` guards MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Since all ebuilds in the tree are EAPI>=4, `|| die` on builtin commands is redundant and dead code. Closes: https://github.com/gentoo/gentoo/pull/13940 Reviewed-by: Ulrich Müller Reviewed-by: Michał Górny Reviewed-by: Andreas K. Hüttel Signed-off-by: David Seifert --- net-print/dymo-cups-drivers/dymo-cups-drivers-1.4.0-r1.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'net-print/dymo-cups-drivers') diff --git a/net-print/dymo-cups-drivers/dymo-cups-drivers-1.4.0-r1.ebuild b/net-print/dymo-cups-drivers/dymo-cups-drivers-1.4.0-r1.ebuild index 339b8008b67b..f5dba4224b3f 100644 --- a/net-print/dymo-cups-drivers/dymo-cups-drivers-1.4.0-r1.ebuild +++ b/net-print/dymo-cups-drivers/dymo-cups-drivers-1.4.0-r1.ebuild @@ -47,10 +47,10 @@ src_test() { # upstream tests are designed to be run AFTER make install, because they depend on final paths. testroot="${T}/testroot" mkdir -p "${testroot}" - emake install DESTDIR="${testroot}" || die "Failed to install for testing" + emake install DESTDIR="${testroot}" # -W filters is because CUPS tries really hard for secure filters: they must be root/root for the filter tests to pass #chown root:root "${testroot}"/usr/libexec/cups/filter/{raster2dymolm,raster2dymolw} || die "failed to set ownership for tests" # This will trigger the following warning repeatedly #Bad permissions on cupsFilter file "..${testroot}/usr/libexec/cups/filter/raster2dymolm" - emake check CUPSTESTPPD_OPTS="-R ${testroot} -W filters" || die "failed tests" + emake check CUPSTESTPPD_OPTS="-R ${testroot} -W filters" } -- cgit v1.2.3-65-gdbad