From 8ce80175a19f2eacd259166f1f17dce85ccd2a4d Mon Sep 17 00:00:00 2001 From: "build@lguplus.co.kr" Date: Fri, 15 Dec 2023 19:43:25 +0900 Subject: [PATCH] =?UTF-8?q?GitRev=20=ED=83=9C=EA=B7=B8=EA=B0=92=20?= =?UTF-8?q?=EB=B0=98=ED=99=98=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/oto/commands/git/git.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/oto/commands/git/git.dart b/lib/oto/commands/git/git.dart index 53f2dc5..f818313 100644 --- a/lib/oto/commands/git/git.dart +++ b/lib/oto/commands/git/git.dart @@ -46,6 +46,7 @@ class GitRev extends Command { var shell = StringBuffer(getCDPath(workspace)); var target = data.branch ?? 'HEAD'; + target = replaceTag(target); shell.write(' && git rev-parse $target'); var process = await ProcessExecutor.start(shell, printStderr: false); var exitCode = await process.process.exitCode;