Skip to content

Commit

Permalink
fix(upgrade-tests): redirect stdout of docker pull in upgrade tests (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
hanshuebner authored Sep 26, 2023
1 parent 22439e0 commit 5eb4c0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/upgrade-tests/test-upgrade-path.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ trap "echo exiting because of error" 0
function get_current_version() {
local image_tag=$1
local version_from_rockspec=$(perl -ne 'print "$1\n" if (/^\s*tag = "(.*)"/)' kong*.rockspec)
if docker pull $image_tag:$version_from_rockspec 2>/dev/null
if docker pull $image_tag:$version_from_rockspec >/dev/null 2>/dev/null
then
echo $version_from_rockspec-ubuntu
else
Expand Down

1 comment on commit 5eb4c0d

@khcp-gha-bot
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bazel Build

Docker image available kong/kong:5eb4c0dd552a2450e9f39c816477efe5eba183d9
Artifacts available https://github.com/Kong/kong/actions/runs/6315100089

Please sign in to comment.