From 88809fd8fc39f6a782bca2aad8f0b45ea7610b81 Mon Sep 17 00:00:00 2001 From: Ondrej Fabry Date: Thu, 30 May 2024 14:19:07 +0200 Subject: [PATCH] Fix delimeter Signed-off-by: Ondrej Fabry --- scripts/report.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/report.sh b/scripts/report.sh index 206bc05..7316e25 100755 --- a/scripts/report.sh +++ b/scripts/report.sh @@ -33,5 +33,5 @@ echo "Running 'vppapi lint'" govpp -D -L trace vppapi lint "${VPP_INPUT}" | tee vppapi_lint.txt echo "Running 'vppapi diff' against latest VPP release" -LATEST_RELEASE_COMMIT=$(git ls-remote --refs --tags "${VPP_INPUT}" | grep -v rc | tail -n1 | cut -f 1 -d " ") +LATEST_RELEASE_COMMIT=$(git ls-remote --refs --tags "${VPP_INPUT}" | grep -v rc | tail -n1 | cut -f 1 -d " ") govpp vppapi diff "${VPP_INPUT}#ref=${LATEST_RELEASE_COMMIT}" --against "${VPP_INPUT}" | tee vppapi_diff.txt