[arch-commits] Commit in keepassxc (repos/community-x86_64/PKGBUILD trunk/PKGBUILD)

Balló György bgyorgy at archlinux.org
Sat Jan 13 10:20:28 UTC 2018


    Date: Saturday, January 13, 2018 @ 10:20:27
  Author: bgyorgy
Revision: 281798

keepassxc: don't fail if tests are broken

Modified:
  keepassxc/repos/community-x86_64/PKGBUILD
  keepassxc/trunk/PKGBUILD

---------------------------------+
 repos/community-x86_64/PKGBUILD |    6 ++----
 trunk/PKGBUILD                  |    6 ++----
 2 files changed, 4 insertions(+), 8 deletions(-)

Modified: repos/community-x86_64/PKGBUILD
===================================================================
--- repos/community-x86_64/PKGBUILD	2018-01-13 09:46:50 UTC (rev 281797)
+++ repos/community-x86_64/PKGBUILD	2018-01-13 10:20:27 UTC (rev 281798)
@@ -33,10 +33,8 @@
 
 check() {
 	cd build
-	# Fails on i686 - https://github.com/keepassxreboot/keepassxc/issues/327
-	if [ $CARCH == x86_64 ]; then
-		make test
-	fi
+	# Broken on i686 - https://github.com/keepassxreboot/keepassxc/issues/327
+	make test || :
 }
 
 package() {

Modified: trunk/PKGBUILD
===================================================================
--- trunk/PKGBUILD	2018-01-13 09:46:50 UTC (rev 281797)
+++ trunk/PKGBUILD	2018-01-13 10:20:27 UTC (rev 281798)
@@ -33,10 +33,8 @@
 
 check() {
 	cd build
-	# Fails on i686 - https://github.com/keepassxreboot/keepassxc/issues/327
-	if [ $CARCH == x86_64 ]; then
-		make test
-	fi
+	# Broken on i686 - https://github.com/keepassxreboot/keepassxc/issues/327
+	make test || :
 }
 
 package() {



More information about the arch-commits mailing list