8 lines
216 B
PowerShell
8 lines
216 B
PowerShell
$ErrorActionPreference = "Stop"
|
|
|
|
$ScriptDir = Split-Path -Parent $MyInvocation.MyCommand.Path
|
|
$RootDir = Resolve-Path (Join-Path $ScriptDir "..")
|
|
$EntryPoint = Join-Path $RootDir "bin\vrc_osc.py"
|
|
|
|
python $EntryPoint
|