From ed1d1e5f88dc0a854f2c36a954511b32ab18d94a Mon Sep 17 00:00:00 2001 From: cornpotage Date: Mon, 22 Jul 2024 17:21:49 -0700 Subject: [PATCH] fixed typo --- src/main/podman/podman.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/podman/podman.ts b/src/main/podman/podman.ts index b2d261e17..5d9d97d82 100644 --- a/src/main/podman/podman.ts +++ b/src/main/podman/podman.ts @@ -485,7 +485,7 @@ const createPodmanPortInput = ( return result.join(' '); }; -const creatEnvInput = (input: string) => { +const buildEnvInput = (input: string) => { if (!input) { return ''; } @@ -571,7 +571,7 @@ export const createRunCommand = (node: Node): string => { }); nodeInput += ` ${cliConfigInput}`; - const envConfigInput = creatEnvInput(node.config.configValuesMap.envInput); + const envConfigInput = buildEnvInput(node.config.configValuesMap.envInput); const imageTag = getImageTag(node); // if imageTage is empty, use then imageTag is already included in the imageName (backwards compatability)