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 027d02d commit bf01556Copy full SHA for bf01556
eFormAPI/Installation/CustomActions/CustomAction.cs
@@ -440,9 +440,20 @@ public static ActionResult UpdateCA(Session session)
440
try
441
{
442
BackupPluginSettings(session, uiIisDir);
443
+ }
444
+ catch (Exception ex)
445
+ {
446
+ MessageBox.Show("We got an exception trying to do backup " + ex.Message);
447
448
+
449
+ try
450
451
DeleteDirectory(Path.Combine(uiIisDir, "src"));
452
}
- catch { }
453
454
455
+ MessageBox.Show("We got an exception trying to delete folder src " + ex.Message);
456
457
458
session.Log("Set proper names to folders");
459
0 commit comments