From 7acc85f280d36bdb01a4c153792fc5133e631a56 Mon Sep 17 00:00:00 2001 From: James Brundage <+@noreply.github.com> Date: Sat, 21 Sep 2024 22:05:26 -0700 Subject: [PATCH] feat: ? ( Fixes #229, Fixes #236 ) Dotting ProcessOutput --- Build/GitHub/Actions/Irregular.ps1 | 2 +- action.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Build/GitHub/Actions/Irregular.ps1 b/Build/GitHub/Actions/Irregular.ps1 index 472570e..04bdb79 100644 --- a/Build/GitHub/Actions/Irregular.ps1 +++ b/Build/GitHub/Actions/Irregular.ps1 @@ -176,7 +176,7 @@ function InvokeActionModule { $inFile = $_ $inOutput = . $inFile.FullName Get-Item -LiteralPath ($inFile.FullName -replace '\.source', '' -replace '\.ps1$', '.txt') | - ProcessOutput | + . ProcessOutput | Out-Host } } diff --git a/action.yml b/action.yml index 41141e1..a690a31 100644 --- a/action.yml +++ b/action.yml @@ -233,7 +233,7 @@ runs: $inFile = $_ $inOutput = . $inFile.FullName Get-Item -LiteralPath ($inFile.FullName -replace '\.source', '' -replace '\.ps1$', '.txt') | - ProcessOutput | + . ProcessOutput | Out-Host } }