From 3f6ed3c4a0f057a1dc3b903d0a12272ae7a9d71d Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 25 Oct 2019 08:33:47 +0200 Subject: v1.7.2 --- php-jsonlint-bin-without-composer-autoloader.patch | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'php-jsonlint-bin-without-composer-autoloader.patch') diff --git a/php-jsonlint-bin-without-composer-autoloader.patch b/php-jsonlint-bin-without-composer-autoloader.patch index d17357d..551a99d 100644 --- a/php-jsonlint-bin-without-composer-autoloader.patch +++ b/php-jsonlint-bin-without-composer-autoloader.patch @@ -1,7 +1,6 @@ -diff --git a/bin/jsonlint b/bin/jsonlint -index 1b9272a..c15cfa6 100755 ---- a/bin/jsonlint -+++ b/bin/jsonlint +diff -up ./bin/jsonlint.rpm ./bin/jsonlint +--- ./bin/jsonlint.rpm 2019-10-25 08:30:29.927672672 +0200 ++++ ./bin/jsonlint 2019-10-25 08:31:09.937459032 +0200 @@ -10,20 +10,7 @@ * file that was distributed with this source code. */ @@ -13,7 +12,7 @@ index 1b9272a..c15cfa6 100755 - } -} - --if ((!$loader = includeIfExists(__DIR__.'/../vendor/autoload.php')) && (!$loader = includeIfExists(__DIR__.'/../../../autoload.php'))) { +-if (!includeIfExists(__DIR__.'/../vendor/autoload.php') && !includeIfExists(__DIR__.'/../../../autoload.php')) { - $msg = 'You must set up the project dependencies, run the following commands:'.PHP_EOL. - 'curl -sS https://getcomposer.org/installer | php'.PHP_EOL. - 'php composer.phar install'.PHP_EOL; -- cgit