mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
require arguments for application launch
This commit is contained in:
parent
24c3b2c5c8
commit
d8081868d7
1 changed files with 4 additions and 4 deletions
|
|
@ -160,10 +160,10 @@ class ApplicationsAddon(AYONAddon, IPluginPaths):
|
|||
name="launch",
|
||||
help="Launch application"
|
||||
)
|
||||
.option("--app", help="Application name")
|
||||
.option("--project", help="Project name")
|
||||
.option("--folder", help="Folder path")
|
||||
.option("--task", help="Task name")
|
||||
.option("--app", required=True, help="Application name")
|
||||
.option("--project", required=True, help="Project name")
|
||||
.option("--folder", required=True, help="Folder path")
|
||||
.option("--task", required=True, help="Task name")
|
||||
)
|
||||
# Convert main command to click object and add it to parent group
|
||||
addon_click_group.add_command(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue