diff options
author | psakievich <psakiev@sandia.gov> | 2024-06-26 00:17:56 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-25 23:17:56 -0700 |
commit | 54d192e026db48be5eeb6749afc16ac6dd3611fb (patch) | |
tree | 7de09599bf625a411b53929c423c71a76a26129b | |
parent | e6a8eba72dc46c3089ec3383e395749290916721 (diff) | |
download | spack-54d192e026db48be5eeb6749afc16ac6dd3611fb.tar.gz spack-54d192e026db48be5eeb6749afc16ac6dd3611fb.tar.bz2 spack-54d192e026db48be5eeb6749afc16ac6dd3611fb.tar.xz spack-54d192e026db48be5eeb6749afc16ac6dd3611fb.zip |
Steal source was not assigning the package class (#44886)
Fetcher was missing the package class assignment
-rw-r--r-- | lib/spack/spack/cmd/develop.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/spack/spack/cmd/develop.py b/lib/spack/spack/cmd/develop.py index 0c9db3274c..9562737c44 100644 --- a/lib/spack/spack/cmd/develop.py +++ b/lib/spack/spack/cmd/develop.py @@ -76,6 +76,7 @@ def _retrieve_develop_source(spec, abspath): # mirror might store an instance with truncated history. package.stage[0].disable_mirrors() + package.stage[0].fetcher.set_package(package) package.stage.steal_source(abspath) |