use of jetbrains.buildServer.buildTriggers.vcs.git.command.impl.GitProgressListener in project teamcity-git by JetBrains.
the class GitCommandLine method createStderrBuffer.
@NotNull
public ByteArrayOutputStream createStderrBuffer() {
LineAwareByteArrayOutputStream buffer = new LineAwareByteArrayOutputStream(Charset.forName("UTF-8"), new GitProgressListener(myLogger));
buffer.setCREndsLine(true);
return buffer;
}
Aggregations