diff options
author | Greg Becker <becker33@llnl.gov> | 2024-08-20 06:04:39 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-20 13:04:39 +0000 |
commit | c1736077bb9e32a99b116f471d12a4941771d9ab (patch) | |
tree | f7ad74b62900da3b19bbf537f639d8bf49d1bd4a | |
parent | 85905959dc40df71924c3445d9aca23825b24f6d (diff) | |
download | spack-c1736077bb9e32a99b116f471d12a4941771d9ab.tar.gz spack-c1736077bb9e32a99b116f471d12a4941771d9ab.tar.bz2 spack-c1736077bb9e32a99b116f471d12a4941771d9ab.tar.xz spack-c1736077bb9e32a99b116f471d12a4941771d9ab.zip |
spack bootstrap status --dev: function call for new interface (#45822)
-rw-r--r-- | lib/spack/spack/bootstrap/status.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/spack/spack/bootstrap/status.py b/lib/spack/spack/bootstrap/status.py index 37b6bc37da..582927af6e 100644 --- a/lib/spack/spack/bootstrap/status.py +++ b/lib/spack/spack/bootstrap/status.py @@ -124,7 +124,7 @@ def _development_requirements() -> List[RequiredResponseType]: # Ensure we trigger environment modifications if we have an environment if BootstrapEnvironment.spack_yaml().exists(): with BootstrapEnvironment() as env: - env.update_syspath_and_environ() + env.load() return [ _required_executable( |