We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9da0252 commit c487d29Copy full SHA for c487d29
src/EasySign.CommandLine/BundleWorker.cs
@@ -46,6 +46,11 @@ protected bool LoadBundle(bool readOnly = true)
46
47
return true;
48
}
49
+ catch (FileNotFoundException fnfex)
50
+ {
51
+ Logger.LogError(fnfex, "Bundle file not found: {BundlePath}", Bundle.BundlePath);
52
+ AnsiConsole.MarkupLine($"[red]File not found: {Bundle.BundlePath}[/]");
53
+ }
54
catch (Exception ex)
55
{
56
Logger.LogError(ex, "Failed to load bundle from file: {BundlePath}", Bundle.BundlePath);
0 commit comments