Skip to content

Commit

Permalink
Merge pull request #65 from PowerDNS/fix-buildkit-default-logging
Browse files Browse the repository at this point in the history
Fix buildkit default logging in recent docker versions
  • Loading branch information
wojas authored May 11, 2023
2 parents ad0a886 + 2ec33b1 commit 61c60a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ else

docker_steps_output() {
# Only display steps, with FROM commands in bold
grep --line-buffered -E '^(Step [0-9]|::: )' | sed "$sed_nobuf" -E "s/^(Step [0-9].* )(FROM .*)$/\\1${color_white_e}\\2${color_reset_e}/" | timestamp > "$dockeroutdev"
grep --line-buffered -E '^(Step [0-9]|::: |^#[0-9]+ (\[|[0-9.]+ :::))' | sed "$sed_nobuf" -E "s/^(Step [0-9].* )(FROM .*)$/\\1${color_white_e}\\2${color_reset_e}/; s/^#[0-9]+ //" | timestamp > "$dockeroutdev"
}

kaniko_steps_output() {
Expand Down

0 comments on commit 61c60a6

Please sign in to comment.