From c463a1c6661e5d24890f65b29da578f913b9a3e7 Mon Sep 17 00:00:00 2001 From: "leedongmyung[desktop]" Date: Sat, 25 Nov 2023 12:42:53 +0900 Subject: [PATCH] test --- lib/oto/commands/git/git.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);