Skip to content

Commit

Permalink
Fix pyprojectTOML path to conda deps.
Browse files Browse the repository at this point in the history
  • Loading branch information
dcdenu4 committed Oct 28, 2024
1 parent 0044b82 commit 10fe5f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions workbench/src/main/setupAddRemovePlugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ export function setupAddPlugin() {
const envName = `invest_plugin_${pluginID}`;
const mamba = settingsStore.get('mamba');
let depString = '';
if (pyprojectTOML.conda_dependencies) {
depString = pyprojectTOML.conda_dependencies.map(
if (pyprojectTOML.tool.natcap.invest.conda_dependencies) {
depString = pyprojectTOML.tool.natcap.invest.conda_dependencies.map(
(dependency) => `"${dependency}"`
).join(' ');
}
Expand Down

0 comments on commit 10fe5f4

Please sign in to comment.