ayon-core/tools/run_tray.ps1
2021-01-19 19:32:04 +01:00

19 lines
317 B
PowerShell

<#
.SYNOPSIS
Helper script Pype Tray.
.DESCRIPTION
.EXAMPLE
PS> .\run_tray.ps1
#>
$script_dir = Split-Path -Path $MyInvocation.MyCommand.Definition -Parent
$pype_root = (Get-Item $script_dir).parent.FullName
& "$($pype_root)\venv\Scripts\Activate.ps1"
python "$($pype_root)\start.py" tray --debug
deactivate