This commit is contained in:
leedongmyung[desktop] 2023-11-25 12:42:53 +09:00
parent a80cb7399c
commit c463a1c666

View file

@ -13,7 +13,7 @@ class Git extends Command {
var shell = StringBuffer('cd $workspace');
var commands = data.commands;
for (var item in commands) {
shell.write('&& git ${getPathNormal(item)}');
shell.writeln('git ${getPathNormal(item)}');
}
var process = await ProcessExecutor.run(shell, workspace: workspace);