From f614596cdcfe7af116023d80ca12f194bb0aaa6c Mon Sep 17 00:00:00 2001 From: cproudlock Date: Fri, 6 Feb 2026 16:02:01 -0500 Subject: [PATCH] Fix unattend.xml path to match actual image structure Changed from Deploy/Control/unattend.xml to Deploy/FlatUnattendW10.xml to match the real GE Aerospace image layout. Co-Authored-By: Claude Opus 4.6 --- webapp/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp/app.py b/webapp/app.py index ef72aeb..4650977 100644 --- a/webapp/app.py +++ b/webapp/app.py @@ -69,7 +69,7 @@ def deploy_path(image_type): def unattend_path(image_type): """Return the unattend.xml path for an image type.""" - return os.path.join(deploy_path(image_type), "Control", "unattend.xml") + return os.path.join(deploy_path(image_type), "FlatUnattendW10.xml") def image_status(image_type):