mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
18 lines
No EOL
335 B
PowerShell
18 lines
No EOL
335 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
|
|
Set-Location -Path $pype_root
|
|
|
|
& poetry run python "$($pype_root)\start.py" tray --debug
|
|
Set-Location -Path $current_dir |