From d9ae13003117b557c43d2d9e7aacde4b2a2f801f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Doktor?= Date: Tue, 14 May 2024 10:38:14 +0200 Subject: [PATCH] kata-deploy: Fix tdx_not_supported call MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit the `tdx_not_supported_warning` function does not exists, the `tdx_not_supported` should be called instead. Fixes: #9628 Signed-off-by: Lukáš Doktor --- tools/packaging/kata-deploy/scripts/kata-deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/packaging/kata-deploy/scripts/kata-deploy.sh b/tools/packaging/kata-deploy/scripts/kata-deploy.sh index 76fa6aeabf..6b795b1c6e 100755 --- a/tools/packaging/kata-deploy/scripts/kata-deploy.sh +++ b/tools/packaging/kata-deploy/scripts/kata-deploy.sh @@ -273,7 +273,7 @@ function install_artifacts() { esac ;; *) - tdx_not_supported_warning + tdx_not_supported ${ID} ${VERSION_ID} ;; esac fi