diff options
author | David Seifert <soap@gentoo.org> | 2019-12-11 13:32:00 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2019-12-11 13:32:00 +0100 |
commit | 398a42634f34afa1979d88ae1d8b38194e911c2d (patch) | |
tree | d6a45bdf7b35b71c192602a46e8d98d12a88cb02 /net-print/dymo-cups-drivers | |
parent | dev-ros/geometric_shapes: Remove old (diff) | |
download | gentoo-398a42634f34afa1979d88ae1d8b38194e911c2d.tar.gz gentoo-398a42634f34afa1979d88ae1d8b38194e911c2d.tar.bz2 gentoo-398a42634f34afa1979d88ae1d8b38194e911c2d.zip |
*/*: [QA] Remove redundant `|| die` guards
* 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 <ulm@gentoo.org>
Reviewed-by: Michał Górny <mgorny@gentoo.org>
Reviewed-by: Andreas K. Hüttel <dilfridge@gentoo.org>
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'net-print/dymo-cups-drivers')
-rw-r--r-- | net-print/dymo-cups-drivers/dymo-cups-drivers-1.4.0-r1.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
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" } |