This commit is contained in:
leedongmyung[desktop] 2023-11-25 12:54:08 +09:00
parent f36b99c846
commit 623db62111
2 changed files with 2 additions and 2 deletions

View file

@ -25,7 +25,7 @@ commands:
- command: Git
id: git
param:
workspace: ../dart_framework
workspace: <!property:workpsace>/../dart_framework
commands:
- restore .
- clean -f

View file

@ -16,7 +16,7 @@ class Git extends Command {
shell.writeln('git ${getPathNormal(item)}');
}
var process = await ProcessExecutor.start(shell, workspace: workspace);
var process = await ProcessExecutor.start(shell);
return complete(await process.process.exitCode, command,
errorMessage: process.stderr.toString());