From f4b03ae8f994ad09cd67f980921cce7f1a88f245 Mon Sep 17 00:00:00 2001 From: Peter LaFosse Date: Mon, 1 Mar 2021 11:08:44 -0500 Subject: PluginManager: Install dependencies before installation --- python/pluginmanager.py | 1 + 1 file changed, 1 insertion(+) (limited to 'python/pluginmanager.py') diff --git a/python/pluginmanager.py b/python/pluginmanager.py index 3add086b..b24ba7b6 100644 --- a/python/pluginmanager.py +++ b/python/pluginmanager.py @@ -62,6 +62,7 @@ class RepoPlugin(object): @installed.setter def installed(self, state): if state: + self.install_dependencies() return core.BNPluginInstall(self.handle) else: return core.BNPluginUninstall(self.handle) -- cgit v1.3.1