Meshroom/tests/nodes/test/ls.py
2024-09-12 10:41:57 +02:00

24 lines
527 B
Python

from meshroom.core import desc
class Ls(desc.CommandLineNode):
commandLine = 'ls {inputValue} > {outputValue}'
inputs = [
desc.File(
name='input',
label='Input',
description='''''',
value='',
invalidate=True,
)
]
outputs = [
desc.File(
name='output',
label='Output',
description='''''',
value=desc.Node.internalFolder + 'ls.txt',
invalidate=False,
)
]