This commit is contained in:
build@lguplus.co.kr 2023-12-15 19:55:20 +09:00
parent 8f9fec69fc
commit 093a51aa48

View file

@ -47,7 +47,7 @@ class GitRev extends Command {
var shell = StringBuffer(getCDPath(workspace));
var target = data.branch ?? 'HEAD';
target = replaceTag(target);
shell.write(' && git fetch origin');
// shell.write(' && git fetch origin');
shell.write(' && git rev-parse $target');
var process = await ProcessExecutor.start(shell, printStderr: false);
var exitCode = await process.process.exitCode;