fix: Add double qoutation if the command started and ended with brackets

This commit is contained in:
Amirhossein Barati 2024-06-22 15:00:47 +03:30
parent df129c7ba3
commit fd92a1f7ae

View File

@ -170,6 +170,9 @@ def get_args(stream_spec, overwrite_output=False):
args += reduce(operator.add, [_get_global_args(node) for node in global_nodes], [])
if overwrite_output:
args += ['-y']
for i, arg in enumerate(args):
if arg.startswith('[') and arg.endswith(']'):
args[i] = f'"{args}"'
return args