Skip to content

Commit

Permalink
fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
corn-potage committed Jul 23, 2024
1 parent 3c0f948 commit ed1d1e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/podman/podman.ts
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,7 @@ const createPodmanPortInput = (
return result.join(' ');
};

const creatEnvInput = (input: string) => {
const buildEnvInput = (input: string) => {
if (!input) {
return '';
}
Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit ed1d1e5

Please sign in to comment.