This commit is contained in:
build@lguplus.co.kr 2023-12-15 19:56:07 +09:00
parent 093a51aa48
commit e3e7ad537b

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;