From 756807ebfd29ae4ea34e60eb2047224dcd2d2794 Mon Sep 17 00:00:00 2001 From: Frank Schmitt Date: Wed, 23 Aug 2023 16:43:05 -0700 Subject: [PATCH] Fix console log --- src/pod.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pod.ts b/src/pod.ts index 2144594..9f061e2 100644 --- a/src/pod.ts +++ b/src/pod.ts @@ -27,7 +27,7 @@ export async function processPodspec ( export async function processPod ( podName: string ): Promise> { - console.log(`Running 'pod ipc spec "${podName}"'`) + console.log(`Running 'pod spec cat "${podName}"'`) const podspec = await exec.getExecOutput('pod', ['spec', 'cat', podName]) if (podspec.exitCode !== 0) { core.error(podspec.stderr)