Skip to content

Commit

Permalink
Merge pull request #235 from boesing/bugfix/cli-command-bc-tool
Browse files Browse the repository at this point in the history
Ensure we do pass the correct CLI command to execute the BC tool
  • Loading branch information
boesing committed Jul 11, 2023
2 parents d9e5251 + bc48f21 commit 97cbdde
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/tools.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ function backwardCompatibilityCheckTool(config: Config): ToolRunningContainerDef
return {
executionType : ToolExecutionType.STATIC,
name : 'Backward Compatibility Check',
command : `roave-backward-compatibility-check check --from=\\"${ config.baseReference }\\" --install-development-dependencies`,
command : `roave-backward-compatibility-check --from=\\"${ config.baseReference }\\" --install-development-dependencies`,
filesToCheck : [ 'composer.json' ],
toolType : ToolType.CODE_CHECK,
php : CONTAINER_DEFAULT_PHP_VERSION,
Expand Down
2 changes: 1 addition & 1 deletion tests/code-check-roave-backward-compatibility/matrix.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"include": [
{
"name": "Backward Compatibility Check [@default, latest]",
"job": "{\"command\":\"roave-backward-compatibility-check check --from=\\\\\\\"1111222233334444aaaabbbbccccdddd\\\\\\\" --install-development-dependencies\",\"php\":\"@default\",\"extensions\":[],\"ini\":[],\"dependencies\":\"latest\",\"ignore_platform_reqs_8\":false,\"ignore_php_platform_requirement\":false,\"additional_composer_arguments\":[],\"before_script\":[]}",
"job": "{\"command\":\"roave-backward-compatibility-check --from=\\\\\\\"1111222233334444aaaabbbbccccdddd\\\\\\\" --install-development-dependencies\",\"php\":\"@default\",\"extensions\":[],\"ini\":[],\"dependencies\":\"latest\",\"ignore_platform_reqs_8\":false,\"ignore_php_platform_requirement\":false,\"additional_composer_arguments\":[],\"before_script\":[]}",
"operatingSystem": "ubuntu-latest",
"action": "laminas/laminas-continuous-integration-action@v1"
}
Expand Down

0 comments on commit 97cbdde

Please sign in to comment.