11 lines
291 B
PowerShell
11 lines
291 B
PowerShell
param(
|
|
[Parameter(ValueFromRemainingArguments = $($true))]
|
|
[string[]]$ForwardArgs
|
|
)
|
|
|
|
Set-StrictMode -Version Latest
|
|
$ErrorActionPreference = 'Stop'
|
|
|
|
. (Join-Path $PSScriptRoot '_pwsh-python-shim.ps1')
|
|
Invoke-SdtPythonScript -ScriptName 'publish-sidecar.py' -ForwardArgs $ForwardArgs
|