diff options
-rwxr-xr-x | ci/deploy.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ci/deploy.sh b/ci/deploy.sh index 0f4239608..b13e18e7e 100755 --- a/ci/deploy.sh +++ b/ci/deploy.sh @@ -278,9 +278,9 @@ pushd "${DEPLOY_DIR}" > /dev/null # For baremetal, python is indirectly required for PDF parsing if [ "${DEPLOY_TYPE}" = 'baremetal' ]; then [ -n "$(command -v apt-get)" ] && sudo apt-get install -y \ - python python-ipaddress python-jinja2 + python python-ipaddress python-jinja2 python-yaml [ -n "$(command -v yum)" ] && sudo yum install -y --skip-broken \ - python python-ipaddress python-jinja2 + python python-ipaddress python-jinja2 python-yaml fi # AArch64 VMs use AAVMF (guest UEFI) |