forked from OSchip/llvm-project
parent
9cdd877436
commit
178b767b9b
|
@ -33,7 +33,7 @@ class PipedJob(Job):
|
||||||
"""PipedJob - A sequence of piped commands."""
|
"""PipedJob - A sequence of piped commands."""
|
||||||
|
|
||||||
def __init__(self, commands):
|
def __init__(self, commands):
|
||||||
assert all_true(args, lambda x: isinstance(x, Arguments.Command))
|
assert Util.all_true(commands, lambda x: isinstance(x, Arguments.Command))
|
||||||
self.commands = list(commands)
|
self.commands = list(commands)
|
||||||
|
|
||||||
def addJob(self, job):
|
def addJob(self, job):
|
||||||
|
|
Loading…
Reference in New Issue