From bfc79dc98bfe68e22d3a58099bf550eda1a90a67 Mon Sep 17 00:00:00 2001 From: Michal Berger Date: Tue, 5 Oct 2021 15:40:20 +0200 Subject: [PATCH] tools: Fix use of continue continue is not used in a proper context here (outside of loop). Use null cmd instead to simply fall through the pip installation. Signed-off-by: Michal Berger Change-Id: Iaea2e5c0177b475edf19d08d71933a74debbb5d9 --- tools/install_pip.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/install_pip.sh b/tools/install_pip.sh index a80c178f2a..c72dc89a55 100755 --- a/tools/install_pip.sh +++ b/tools/install_pip.sh @@ -128,7 +128,7 @@ if is_fedora && [[ ${DISTRO} == f* ]]; then # if python3-pip is later installed. # For general sanity, we just use the packaged pip. It should be # recent enough anyway. This is included via rpms/general - continue + : # Simply fall through else install_get_pip fi