diff options
author | Tom Scogland <scogland1@llnl.gov> | 2022-03-18 19:22:28 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-18 20:22:28 -0600 |
commit | 3ffe9a27b2cf9861b12988f08eacb49e446db06e (patch) | |
tree | 7643963b9c6d23eceb5961747e190dcb2e734a3e /lib | |
parent | 9e01e17dc60aa32ce5d77f17d43fccadc0ec14ab (diff) | |
download | spack-3ffe9a27b2cf9861b12988f08eacb49e446db06e.tar.gz spack-3ffe9a27b2cf9861b12988f08eacb49e446db06e.tar.bz2 spack-3ffe9a27b2cf9861b12988f08eacb49e446db06e.tar.xz spack-3ffe9a27b2cf9861b12988f08eacb49e446db06e.zip |
allow ci reproduce to work when spack is cloned to a directory not named spack (#29518)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/spack/ci.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/spack/spack/ci.py b/lib/spack/spack/ci.py index 5ddb7390e8..e7606135c3 100644 --- a/lib/spack/spack/ci.py +++ b/lib/spack/spack/ci.py @@ -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) |