diff --git a/lib/oto/commands/git/git.dart b/lib/oto/commands/git/git.dart index 79a1a21..f7969a8 100644 --- a/lib/oto/commands/git/git.dart +++ b/lib/oto/commands/git/git.dart @@ -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);