Skip to content

Commit 6901622

Browse files
committed
fix: Set Env variables when output: hide in multienv
Signed-off-by: Hirotake Kobayashi <[email protected]>
1 parent 16f2ce7 commit 6901622

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/core/runtime/multienv_step_runner.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ func (r *MultiEnvStepRunner) Run(
2424
envs map[string]string,
2525
postProcessOutput valid.PostProcessRunOutputOption,
2626
) (string, error) {
27-
res, err := r.RunStepRunner.Run(ctx, shell, command, path, envs, false, postProcessOutput)
27+
res, err := r.RunStepRunner.Run(ctx, shell, command, path, envs, false, valid.PostProcessRunOutputShow)
2828
if err != nil {
2929
return "", err
3030
}

0 commit comments

Comments
 (0)