Skip to content

Commit

Permalink
dev: disabled bamarni-bin.forward-command in composer.json.
Browse files Browse the repository at this point in the history
  • Loading branch information
LastDragon-ru committed Jan 26, 2024
1 parent 65638d1 commit 31d3fb4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/actions/php/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,12 @@ runs:
coverage: none
tools: cs2pr

- name: Disable tools
if: ${{ !(inputs.tools == 'true' || inputs.tools == 1) }} # https://github.com/actions/runner/issues/1483
- name: Install tools
if: ${{ inputs.tools == 'true' || inputs.tools == 1 }} # https://github.com/actions/runner/issues/1483
shell: bash
working-directory: ${{ inputs.working-directory }}
run: |
composer remove --no-interaction --no-progress --ansi --no-update --dev "bamarni/composer-bin-plugin"
composer bin all install
- name: Install dependencies
if: ${{ inputs.dependencies == 'true' || inputs.dependencies == 1 }} # https://github.com/actions/runner/issues/1483
Expand Down
1 change: 1 addition & 0 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,7 @@ EOT
config.vm.provision "composer install", type: "shell", privileged: false, inline: <<-SHELL
if test -f "/project/composer.json"; then
(cd /project && composer install)
(cs /project && composer bin all install)
fi
SHELL

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@
},
"bamarni-bin": {
"bin-links": false,
"forward-command": true
"forward-command": false
},
"lara-asp": {
"ci": {
Expand Down

0 comments on commit 31d3fb4

Please sign in to comment.