Skip to content

Commit

Permalink
Fix console log
Browse files Browse the repository at this point in the history
  • Loading branch information
Frank Schmitt committed Aug 23, 2023
1 parent 33e5810 commit 756807e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export async function processPodspec (
export async function processPod (
podName: string
): Promise<Record<string, any>> {
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)
Expand Down

0 comments on commit 756807e

Please sign in to comment.