Skip to content

Commit

Permalink
fix path
Browse files Browse the repository at this point in the history
  • Loading branch information
research11111 committed Oct 27, 2023
1 parent 2bfa560 commit e407afc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions avogadro/qtplugins/plugindownloader/pluginmanagerwidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ void PluginManagerWidget::installDownloadedPlugin() {
} else {
QString installer = m_settings.value("extensions/python/installer", QString()).toString();
QString pythonEnvironmentFull = m_settings.value("extensions/python/environmentFull", QString()).toString();
appendInstallationInformation("Installing python requirements ...");
appendInstallationInformation("Installing python requirements from '" + pluginDir + "' method " + installer + " env " + pythonEnvironmentFull + " ...");
installRequirements(pluginDir, installer, pythonEnvironmentFull);
appendInstallationInformation("Requirements installed ...");
}
Expand Down Expand Up @@ -466,7 +466,7 @@ QString PluginManagerWidget::unzipPlugin()
m_reply->deleteLater();
m_downloadList.removeLast();
installNextPlugin();
return extractDirectory;
return extractDirectory + QDir::separator() + repoName;
}
return NULL;
}
Expand Down

0 comments on commit e407afc

Please sign in to comment.