Skip to content

Commit

Permalink
fix: Fix the GNU diff command (#1039)
Browse files Browse the repository at this point in the history
  • Loading branch information
theofidry authored Oct 8, 2023
1 parent 83f213c commit db98565
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Phar/PharDiff.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

namespace KevinGH\Box\Phar;

use KevinGH\Box\Console\Command\Extract;
use KevinGH\Box\Pharaoh\PharDiff as ParagoniePharDiff;
use SplFileInfo;
use Symfony\Component\Finder\Finder;
Expand Down Expand Up @@ -71,7 +72,7 @@ public function gnuDiff(): ?string
return self::getDiff(
$this->pharInfoA,
$this->pharInfoB,
'diff',
'diff --exclude='.Extract::PHAR_META_PATH,
);
}

Expand Down

0 comments on commit db98565

Please sign in to comment.