From c0a974f0ce1a366d09cd86e8f2f0ada94631ec15 Mon Sep 17 00:00:00 2001 From: Jan Gelety Date: Thu, 7 May 2020 17:05:30 +0200 Subject: [PATCH] FIX: Download only vpp packages Signed-off-by: Jan Gelety Change-Id: I88682b972947d73ae8433b550bd5e96b0b7c2c76 (cherry picked from commit 36237cf89a092fee57faa6b2b1726d40df493845) --- resources/libraries/bash/function/artifacts.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/libraries/bash/function/artifacts.sh b/resources/libraries/bash/function/artifacts.sh index 426782d2ea..0a08d7311e 100644 --- a/resources/libraries/bash/function/artifacts.sh +++ b/resources/libraries/bash/function/artifacts.sh @@ -88,7 +88,7 @@ function download_ubuntu_artifacts () { packages=$(apt-cache -o Dir::Etc::SourceList=${apt_fdio_repo_file} \ -o Dir::Etc::SourceParts=${apt_fdio_repo_file} dumpavail \ - | grep Package: | cut -d " " -f 2) || { + | grep Package: | cut -d " " -f 2 | grep vpp) || { die "Retrieval of available VPP packages failed." } if [ -z "${VPP_VERSION-}" ]; then -- 2.16.6