From d013068a0c61cc6788c346cc50a2a0d6fd3a9dac Mon Sep 17 00:00:00 2001 From: Neil Dorin Date: Tue, 19 Aug 2025 14:54:11 -0600 Subject: [PATCH] Update src/PepperDash.Essentials/ControlSystem.cs Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- src/PepperDash.Essentials/ControlSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PepperDash.Essentials/ControlSystem.cs b/src/PepperDash.Essentials/ControlSystem.cs index 0d508b33..554c7bc9 100644 --- a/src/PepperDash.Essentials/ControlSystem.cs +++ b/src/PepperDash.Essentials/ControlSystem.cs @@ -613,7 +613,7 @@ namespace PepperDash.Essentials var rootDir = userOrNvramDir?.Parent; if (rootDir == null) { - throw new Exception("Unable to determine root directory for html extraction."); + throw new Exception($"Unable to determine root directory for html extraction. Current path: {Global.FilePathPrefix}"); } var htmlDir = Path.Combine(rootDir.FullName, "html"); Debug.LogMessage(LogEventLevel.Information, "Found htmlassets zip file: {zipFile:l}... Unzipping...", htmlZipFile.FullName);