Skip to content

Commit 97cbdde

Browse files
authored
Merge pull request #235 from boesing/bugfix/cli-command-bc-tool
Ensure we do pass the correct CLI command to execute the BC tool
2 parents d9e5251 + bc48f21 commit 97cbdde

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/tools.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ function backwardCompatibilityCheckTool(config: Config): ToolRunningContainerDef
5858
return {
5959
executionType : ToolExecutionType.STATIC,
6060
name : 'Backward Compatibility Check',
61-
command : `roave-backward-compatibility-check check --from=\\"${ config.baseReference }\\" --install-development-dependencies`,
61+
command : `roave-backward-compatibility-check --from=\\"${ config.baseReference }\\" --install-development-dependencies`,
6262
filesToCheck : [ 'composer.json' ],
6363
toolType : ToolType.CODE_CHECK,
6464
php : CONTAINER_DEFAULT_PHP_VERSION,

tests/code-check-roave-backward-compatibility/matrix.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"include": [
33
{
44
"name": "Backward Compatibility Check [@default, latest]",
5-
"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\":[]}",
5+
"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\":[]}",
66
"operatingSystem": "ubuntu-latest",
77
"action": "laminas/laminas-continuous-integration-action@v1"
88
}

0 commit comments

Comments
 (0)