Lines Matching refs:Command
217 for Command in SBCommandFile:
218 Command = Command.strip()
222 if (Command.startswith("make ") or Command == "make") and \
223 "-j" not in Command:
224 Command += " -j%d" % Jobs
225 SBCommand = SBPrefix + Command
280 Command = CmdPrefix + OutputOption + os.path.join(Dir, FileName)
284 print " Executing: %s" % (Command,)
285 check_call(Command, cwd = Dir, stderr=LogFile,
468 Command = "svn delete %s" % (Path,)
470 Command = "svn add %s" % (Path,)
473 print " Executing: %s" % (Command,)
474 check_call(Command, shell=True)