Merge branch 'develop' into enhancement/AY-3996_Use-folder-argument

# Conflicts:
#	client/ayon_core/cli.py
#	client/ayon_core/cli_commands.py
#	client/ayon_core/modules/deadline/repository/custom/plugins/GlobalJobPreLoad.py
#	client/ayon_core/modules/royalrender/lib.py
This commit is contained in:
Jakub Trllo 2024-04-02 16:05:17 +02:00
commit abdae877e7
443 changed files with 10069 additions and 6735 deletions

View file

@ -81,13 +81,13 @@ main_cli.set_alias("addon", "module")
@main_cli.command()
@click.argument("output_json_path")
@click.option("--project", help="Project name", default=None)
@click.option("--folder", help="Folder path", default=None)
@click.option("--asset", help="Folder path", default=None)
@click.option("--task", help="Task name", default=None)
@click.option("--app", help="Application name", default=None)
@click.option(
"--envgroup", help="Environment group (e.g. \"farm\")", default=None
)
def extractenvironments(output_json_path, project, folder, task, app, envgroup):
def extractenvironments(output_json_path, project, asset, task, app, envgroup):
"""Extract environment variables for entered context to a json file.
Entered output filepath will be created if does not exists.
@ -95,10 +95,14 @@ def extractenvironments(output_json_path, project, folder, task, app, envgroup):
All context options must be passed otherwise only AYON's global
environments will be extracted.
Context options are "project", "folder", "task", "app"
Context options are "project", "asset", "task", "app"
Deprecated:
This function is deprecated and will be removed in future. Please use
'addon applications extractenvironments ...' instead.
"""
Commands.extractenvironments(
output_json_path, project, folder, task, app, envgroup
output_json_path, project, asset, task, app, envgroup
)