Lines Matching refs:command
21 Diff options are passed to the diff command of the underlying system.
541 def RunShellWithReturnCode(command, print_output=False,
543 """Executes a command and returns the output from stdout and the return code.
546 command: Command to execute.
554 logging.info("Running %s", command)
555 p = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE,
577 def RunShell(command, silent_ok=False, universal_newlines=True,
579 data, retcode = RunShellWithReturnCode(command, print_output,
582 ErrorExit("Got error status from %s:\n%s" % (command, data))
584 ErrorExit("No output from %s" % command)
603 args: Extra arguments to pass to the diff command.
887 ErrorExit("Failed to run command %s" % cmd)
1219 # Mercurial has a command to get the base directory of a repository
1235 # Git has a command to test if you're in a git tree.