diff --git a/lib/oto/commands/git/git.dart b/lib/oto/commands/git/git.dart index f7969a8..9562c66 100644 --- a/lib/oto/commands/git/git.dart +++ b/lib/oto/commands/git/git.dart @@ -10,7 +10,7 @@ class Git extends Command { var data = DataGit.fromJson(command.param); var workspace = getWorkspace(data.workspace); - var shell = StringBuffer('cd $workspace'); + var shell = StringBuffer('cd $workspace\n'); var commands = data.commands; for (var item in commands) { shell.writeln('git ${getPathNormal(item)}');