From 623db6211116f8952ce7481ca932207f6ca8bfe5 Mon Sep 17 00:00:00 2001 From: "leedongmyung[desktop]" Date: Sat, 25 Nov 2023 12:54:08 +0900 Subject: [PATCH] test --- assets/pipeline-test.yaml | 2 +- lib/oto/commands/git/git.dart | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/assets/pipeline-test.yaml b/assets/pipeline-test.yaml index f7365db..49659fd 100644 --- a/assets/pipeline-test.yaml +++ b/assets/pipeline-test.yaml @@ -25,7 +25,7 @@ commands: - command: Git id: git param: - workspace: ../dart_framework + workspace: /../dart_framework commands: - restore . - clean -f diff --git a/lib/oto/commands/git/git.dart b/lib/oto/commands/git/git.dart index 3495966..b562e07 100644 --- a/lib/oto/commands/git/git.dart +++ b/lib/oto/commands/git/git.dart @@ -16,7 +16,7 @@ class Git extends Command { shell.writeln('git ${getPathNormal(item)}'); } - var process = await ProcessExecutor.start(shell, workspace: workspace); + var process = await ProcessExecutor.start(shell); return complete(await process.process.exitCode, command, errorMessage: process.stderr.toString());