org.vcsreader.vcs.hg.HgCommandLine Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vcsreader Show documentation
Show all versions of vcsreader Show documentation
Minimal Java library for reading VCS commits (git, hg, svn)
The newest version!
package org.vcsreader.vcs.hg;
import org.vcsreader.lang.CommandLine;
class HgCommandLine {
public static boolean isSuccessful(CommandLine commandLine) {
// don't check stderr because hg can use it for non-error information
return commandLine.exitCode() == 0 && commandLine.hasNoExceptions();
}
}