Skip to content

Commit

Permalink
Fix bin/build
Browse files Browse the repository at this point in the history
  • Loading branch information
antonmedv committed Oct 17, 2024
1 parent 1464272 commit 14d1b7e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bin/build
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ if (!preg_match('/^\d+\.\d+\.\d+(\-\w+(\.\d+)?)?$/', $version)) {
exit(1);
}

`composer install --no-dev --prefer-dist --optimize-autoloader`;
echo `set -x; composer install --no-dev --prefer-dist --optimize-autoloader`;

$pharName = "deployer.phar";
$pharFile = __ROOT__ . '/' . $pharName;
Expand All @@ -38,6 +38,7 @@ $ignore = [
'Tests',
'tests',
'deploy.php',
'.php-cs-fixer.dist.php',
];

$phar = new \Phar($pharFile, 0, $pharName);
Expand Down

0 comments on commit 14d1b7e

Please sign in to comment.