Skip to content

Commit

Permalink
fix(gcp-functions): Fixed --set-env-vars always being set (#274)
Browse files Browse the repository at this point in the history
  • Loading branch information
TriPSs committed May 17, 2024
2 parents b72daf9 + 176f106 commit be814a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/gcp-functions/src/executors/deploy/deploy.impl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ export async function deployExecutor(

entryPoint && `--entry-point=${entryPoint}`,
envVarsFile && `--env-vars-file=${envVarsFile}`,
setEnvVars && `--set-env-vars=${setEnvVars.join(',')}`,
setEnvVars.length > 0 && `--set-env-vars=${setEnvVars.join(',')}`,
retry && `--retry`,
ingressSettings && `--ingress-settings=${ingressSettings}`,
egressSettings && `--egress-settings=${egressSettings}`,
Expand Down

0 comments on commit be814a4

Please sign in to comment.