diff options
| author | Peter LaFosse <peter@vector35.com> | 2021-03-01 11:08:44 -0500 |
|---|---|---|
| committer | Peter LaFosse <peter@vector35.com> | 2021-03-02 07:50:56 -0500 |
| commit | f4b03ae8f994ad09cd67f980921cce7f1a88f245 (patch) | |
| tree | cf6fd41eb6b0c1df072ba969995f7b16bf72ac12 /python/pluginmanager.py | |
| parent | dc5798ff89c22c8c74fdf59f49a415d3a9569129 (diff) | |
PluginManager: Install dependencies before installation
Diffstat (limited to 'python/pluginmanager.py')
| -rw-r--r-- | python/pluginmanager.py | 1 |
1 files changed, 1 insertions, 0 deletions
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) |
