We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2666ff9 commit 7af1d34Copy full SHA for 7af1d34
1 file changed
runners/console/index.ts
@@ -469,8 +469,8 @@ export class Console extends Runner {
469
: runCommand.command.parameters[commandIndex];
470
471
let dirPath = (runCommand.command.parameters.length > 2 && runCommand.command.parameters[2].dir)
472
- ? path.join(this.getVariable(this.workspaceDirectory), runCommand.command.parameters[2].dir)
473
- : this.getVariable(this.workspaceDirectory)
+ ? path.join(this.getVariable(this.WORKSPACE_DIRECTORY), runCommand.command.parameters[2].dir)
+ : this.getVariable(this.WORKSPACE_DIRECTORY)
474
475
if(runCommand.command.parameters.length > 2 && runCommand.command.parameters[2].asynchronous){
476
if(runCommand.command.parameters[3].port){
0 commit comments