allow ci reproduce to work when spack is cloned to a directory not named spack (#29518)

This commit is contained in:
Tom Scogland 2022-03-18 19:22:28 -07:00 committed by GitHub
parent 9e01e17dc6
commit 3ffe9a27b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1570,7 +1570,7 @@ def setup_spack_repro_version(repro_dir, checkout_commit, merge_commit=None):
# Next attempt to clone your local spack repo into the repro dir
with fs.working_dir(repro_dir):
clone_out = git("clone", spack_git_path,
clone_out = git("clone", spack_git_path, "spack",
output=str, error=os.devnull,
fail_on_error=False)