Skip to content

Commit

Permalink
fixed bash -c problem with php official image
Browse files Browse the repository at this point in the history
  • Loading branch information
renandelmonico committed Jan 19, 2022
1 parent 644d5d1 commit 4b21186
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"icon": "img/icon.png",
"author": "renandelmonico",
"license": "MIT",
"version": "1.0.0",
"version": "1.0.1",
"preview": true,
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion server/src/TestRunner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ export class TestRunner {

if (this.isDocker) {
const phpUnitFile = phpUnitBinary ? phpUnitBinary.substring(1) : '';
const command = `${dockerImage} 'bash -c "${phpUnitFile} ${params.join(' ')}"'`;
const command = `${dockerImage} bash -c "${phpUnitFile} ${params.join(' ')}"`;

return {
title: 'PHPUnit LSP',
Expand Down

0 comments on commit 4b21186

Please sign in to comment.