Skip to content

Commit

Permalink
chore: only set value if exists
Browse files Browse the repository at this point in the history
  • Loading branch information
OysteinVesth committed May 10, 2024
1 parent 163d53b commit dd398db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ const run = async () => {
imageName,
deployerName: deployerName,
proxyBufferSize,
proxyBodySize,
proxyBodySize: proxyBodySize && proxyBodySize.length > 0 ? proxyBodySize : undefined,
resources,
};
console.log(JSON.stringify(deployParams));
Expand Down

0 comments on commit dd398db

Please sign in to comment.