the pulumi-command package keeps giving me an erro...
# general
m
the pulumi-command package keeps giving me an error like the following, from time to time. i need to manually edit the stack to remove the ressource and make it recreate:
Copy code
command:local:Command (...):
    error: Preview failed: unrecognized signature '' in property map for "archive"
Copy code
cmd = command.local.Command(
        ressource_name,
        create=Output.format(
            "hugo -s {src} -d {dest} -b {base_url} --cleanDestinationDir",
            src=source.path,
            dest=destination.path,
            base_url=base_url,
        ),
        archive_paths=[destination.path],
        triggers=[get_folder_changetime(source)],
    )