Skip to content

Commit 592ba96

Browse files
committed
Fix plugin not uninstalling on macOS
1 parent 7bebfc1 commit 592ba96

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Source/UI/PluginInstaller.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1257,7 +1257,7 @@ bool PluginInfoComponent::uninstallPlugin(const String& plugin)
12571257

12581258
//delete plugin file
12591259
File pluginFile = getPluginsDirectory().getChildFile(dllName);
1260-
if(!pluginFile.deleteFile())
1260+
if(!pluginFile.deleteRecursively())
12611261
{
12621262
LOGD("Unable to delete ", pluginFile.getFullPathName(), " ...Trying again!");
12631263

0 commit comments

Comments
 (0)