8 lines
191 B
Python
8 lines
191 B
Python
class Run:
|
|
def __init__(self, *commands):
|
|
self.commands = commands
|
|
|
|
async def build(self, script):
|
|
for command in self.commands:
|
|
await script.run(command)
|