Ohad
01/15/2023, 8:39 PMcreate_shell_script_op
api with no luck. I was wondering if it's possible, or is the only way to wrap it within a bash script? Also, how do I pass parameters to the script?
from dagster import file_relative_path, graph
from dagster_shell import create_shell_script_op
@graph
def my_graph():
a = create_shell_script_op(file_relative_path(__file__, "hello-powershell.ps1"), name="a")
a()
chris
01/17/2023, 7:33 PMOhad
01/17/2023, 8:34 PM