From 970e193b45711ac0f130914f8b25d959cece3d51 Mon Sep 17 00:00:00 2001 From: Ondrej Fabry Date: Thu, 2 Nov 2023 14:42:09 +0100 Subject: [PATCH] Fix running integration tests outside of GitHub (#168) Signed-off-by: Ondrej Fabry Signed-off-by: Ondrej Fabry --- test/run_integration.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/run_integration.sh b/test/run_integration.sh index 34f03442..7106e5b2 100755 --- a/test/run_integration.sh +++ b/test/run_integration.sh @@ -42,7 +42,7 @@ docker build --tag "${imgtag}" \ vppver=$(docker run --rm -i "${imgtag}" dpkg-query -f '${Version}' -W vpp) -if [ -n "${GITHUB_STEP_SUMMARY}" ]; then +if [ -n "${GITHUB_STEP_SUMMARY:-}" ]; then echo "**VPP version**: \`${vppver}\`" >> $GITHUB_STEP_SUMMARY echo "" >> $GITHUB_STEP_SUMMARY fi