Skip to content

Commit

Permalink
Update tools script and remove Symfony CLI
Browse files Browse the repository at this point in the history
  • Loading branch information
bezin committed Mar 19, 2024
1 parent 88e8ccf commit f1c1374
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
5 changes: 0 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,6 @@ jobs:
restore-keys: |
${{ runner.os }}-php-
- name: Install Symfony CLI
run: |
curl -sS https://get.symfony.com/cli/installer | bash
mv /home/runner/.symfony5/bin/symfony /usr/local/bin/symfony
- name: Install dependencies
run: composer install --prefer-dist --no-progress

Expand Down
2 changes: 1 addition & 1 deletion tools/tools.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
}

chdir($tool->getPathname());
exec(sprintf('symfony composer %s --ansi', $command));
exec(sprintf('%s %s %s --ansi', PHP_BINARY, '/usr/local/bin/composer', $command));
chdir($toolsDir);
}

0 comments on commit f1c1374

Please sign in to comment.