From a5fada3a92258b53d5b982582020779ee8ca2b02 Mon Sep 17 00:00:00 2001 From: "Jason N." <33561705+JasonN3@users.noreply.github.com> Date: Mon, 4 Mar 2024 20:58:12 -0500 Subject: [PATCH] fix path --- tests/iso/os-release.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/iso/os-release.sh b/tests/iso/os-release.sh index 64ba832..ea066bc 100644 --- a/tests/iso/os-release.sh +++ b/tests/iso/os-release.sh @@ -13,7 +13,7 @@ sudo mount -o loop $iso /mnt/iso # Mount squashfs sudo mount -t squashfs -o loop /mnt/iso/images/install.img /mnt/install -FOUND_VERSION=$(cat /mnt/install/os-release | grep VERSION_ID | cut -d= -f2) +FOUND_VERSION=$(cat /mnt/install/etc/os-release | grep VERSION_ID | cut -d= -f2) # Cleanup sudo umount /mnt/install