mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
19 lines
No EOL
427 B
PowerShell
19 lines
No EOL
427 B
PowerShell
<#
|
|
.SYNOPSIS
|
|
Helper script to Pype Settings UI
|
|
|
|
.DESCRIPTION
|
|
This script will run Pype and open Settings UI.
|
|
|
|
.EXAMPLE
|
|
|
|
PS> .\run_settings.ps1
|
|
|
|
#>
|
|
|
|
$current_dir = Get-Location
|
|
$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" settings --dev
|
|
Set-Location -Path $current_dir |