From b6472766b140aa63589f59902ec4cb8074e3daef Mon Sep 17 00:00:00 2001 From: Joachim Wiberg Date: Fri, 13 Sep 2024 09:33:47 +0200 Subject: [PATCH] board/common: spellcheck path to downloaded OCI files Check correct path for downloaded container images. Signed-off-by: Joachim Wiberg --- board/common/rootfs/usr/sbin/container | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/board/common/rootfs/usr/sbin/container b/board/common/rootfs/usr/sbin/container index 5731c62a..5a1148ed 100755 --- a/board/common/rootfs/usr/sbin/container +++ b/board/common/rootfs/usr/sbin/container @@ -33,8 +33,8 @@ unpack_archive() esac if [ ! -e "$file" ]; then - if [ -e "/var/lib/conatainers/oci/$file" ]; then - file="/var/lib/conatainers/oci/$file" + if [ -e "/var/lib/containers/oci/$file" ]; then + file="/var/lib/containers/oci/$file" elif [ -e "/lib/oci/$file" ]; then file="/lib/oci/$file" else