This commit is contained in:
leedongmyung[desktop] 2023-11-25 12:51:59 +09:00
parent 90649528eb
commit f36b99c846
2 changed files with 2 additions and 1 deletions

View file

@ -25,6 +25,7 @@ commands:
- command: Git
id: git
param:
workspace: ../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);
var process = await ProcessExecutor.start(shell, workspace: workspace);
return complete(await process.process.exitCode, command,
errorMessage: process.stderr.toString());