All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.vcsreader.vcs.hg.HgCommandLine Maven / Gradle / Ivy

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();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy