added projectmanager to openpype cli commands

This commit is contained in:
iLLiCiTiT 2021-05-07 15:13:50 +02:00
parent 5eb439b3b3
commit 70ed7abeb5
3 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,18 @@
<#
.SYNOPSIS
Helper script OpenPype Tray.
.DESCRIPTION
.EXAMPLE
PS> .\run_tray.ps1
#>
$current_dir = Get-Location
$script_dir = Split-Path -Path $MyInvocation.MyCommand.Definition -Parent
$openpype_root = (Get-Item $script_dir).parent.FullName
Set-Location -Path $openpype_root
& poetry run python "$($openpype_root)\start.py" projectmanager
Set-Location -Path $current_dir