From 82d3d06ab302efd80b8d3665e43bbe3eafe0e598 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 2 Jan 2018 09:48:35 +0100 Subject: simplify --- php-tecnickcom-tc-lib-barcode.spec | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'php-tecnickcom-tc-lib-barcode.spec') diff --git a/php-tecnickcom-tc-lib-barcode.spec b/php-tecnickcom-tc-lib-barcode.spec index 6a69437..21b6f85 100644 --- a/php-tecnickcom-tc-lib-barcode.spec +++ b/php-tecnickcom-tc-lib-barcode.spec @@ -113,12 +113,10 @@ require __DIR__ . '/../test/TestStrings.php'; EOF ret=0 -for cmd in "php %{phpunit}" \ - "php70 %{_bindir}/phpunit6" \ - "php71 %{_bindir}/phpunit6" \ - "php72 %{_bindir}/phpunit6"; do - if which $cmd; then - $cmd --no-coverage --verbose || ret=1 +for cmdarg in "php %{phpunit}" php70 php71 php72; do + if which $cmdarg; then + set $cmdarg + $1 ${2:-%{_bindir}/phpunit6} --no-coverage --verbose || ret=1 fi done exit $ret -- cgit