Skip to content

Commit

Permalink
wire up logger
Browse files Browse the repository at this point in the history
  • Loading branch information
savingoyal committed Dec 12, 2024
1 parent 24e7927 commit 591a220
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion metaflow/plugins/pypi/conda_environment.py
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,8 @@ def bootstrap_commands(self, step_name, datastore_type):
'DISABLE_TRACING=True python -m metaflow.plugins.pypi.bootstrap "%s" %s "%s" linux-64'
% (self.flow.name, id_, self.datastore_type),
"echo 'Environment bootstrapped.'",
"export PATH=$PATH:$(pwd)/micromamba",
# To avoid having to install micromamba in the PATH in micromamba.py, we add it to the PATH here.
"export PATH=$PATH:$(pwd)/micromamba/bin",
]
else:
# for @conda/@pypi(disabled=True).
Expand Down

0 comments on commit 591a220

Please sign in to comment.