From 830db410eaa37117f7bcd5f5d3b30c9b985c0b4b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lauri=20Kentt=C3=A4?= Date: Sat, 20 Jul 2024 15:26:18 +0300 Subject: [PATCH] Properly propagate configuration error message --- src/Setup.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Setup.cs b/src/Setup.cs index 1f00576..06f0bc9 100644 --- a/src/Setup.cs +++ b/src/Setup.cs @@ -976,7 +976,7 @@ public class Setup { WriteLine($"Error: {e.Message}"); WriteLine($"Reverting. Use batch mode with allow-bad-loader to override."); revert(); - throw new SetupException("Check your configuration and try again."); + throw new SetupException($"Error in configuration: {e.Message}"); } } };