diff --git a/package.json b/package.json index 0fb746f8..cd2adf80 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/server/src/TestRunner.ts b/server/src/TestRunner.ts index 28c1567e..0ac6639b 100644 --- a/server/src/TestRunner.ts +++ b/server/src/TestRunner.ts @@ -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',