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 9221435 commit 04bd9ddCopy full SHA for 04bd9dd
Flow.Launcher.Core/Plugin/PluginManager.cs
@@ -183,7 +183,14 @@ private static void DeletePythonBinding()
183
const string binding = "flowlauncher.py";
184
foreach (var subDirectory in Directory.GetDirectories(DataLocation.PluginsDirectory))
185
{
186
- File.Delete(Path.Combine(subDirectory, binding));
+ try
187
+ {
188
+ File.Delete(Path.Combine(subDirectory, binding));
189
+ }
190
+ catch (Exception e)
191
192
+ API.LogDebug(ClassName, $"Failed to delete {binding} in {subDirectory}: {e.Message}");
193
194
}
195
196
0 commit comments