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 <michallinuxstuff@gmail.com>
Change-Id: Iaea2e5c0177b475edf19d08d71933a74debbb5d9
This commit is contained in:
Michal Berger 2021-10-05 15:40:20 +02:00
parent 982b03c605
commit bfc79dc98b

View File

@ -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