summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorTom Scogland <scogland1@llnl.gov>2022-03-18 19:22:28 -0700
committerGitHub <noreply@github.com>2022-03-18 20:22:28 -0600
commit3ffe9a27b2cf9861b12988f08eacb49e446db06e (patch)
tree7643963b9c6d23eceb5961747e190dcb2e734a3e /lib
parent9e01e17dc60aa32ce5d77f17d43fccadc0ec14ab (diff)
downloadspack-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.py2
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)