Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ci3/denoise
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ tail --sleep-interval=0.2 -n +1 -f "$outfile" > >(
tail_pid=$!

# Execute the command in background.
PARENT_LOG_ID=$key bash -c "$cmd" > >(redact > $outfile) 2>&1 &
PARENT_LOG_ID=$key bash -c "$cmd" 2>&1 | redact > $outfile &
job_pid=$!

# Wait for the job to finish and get its exit status.
Expand Down
Loading