[git] Disable interactive callbacks when calling git tag -l

GitOrigin-RevId: e6b09a265754f5afb33006bc29efe480cb2fe246
This commit is contained in:
Ilia.Shulgin
2025-01-17 16:00:28 +01:00
committed by intellij-monorepo-bot
parent 8cc12199c5
commit 55bf2f0155

View File

@@ -85,6 +85,7 @@ public final class GitBranchUtil {
GitLineHandler h = new GitLineHandler(project, root, GitCommand.TAG);
h.addParameters("-l");
h.setSilent(true);
h.setEnableInteractiveCallbacks(false);
List<String> tags = new ArrayList<>();
h.addLineListener(new GitLineHandlerListener() {