diff options
author | Ken Raffenetti <raffenet@users.noreply.github.com> | 2022-05-02 15:33:54 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-02 20:33:54 +0000 |
commit | e2c72e583f57a725171f2d3624db757c9c31e480 (patch) | |
tree | 679300ebc0610a7111a1a52e3e0279db462af268 /lib | |
parent | 4219b89faab3b0e848de45dd6a84ef52ba90e0f2 (diff) | |
download | spack-e2c72e583f57a725171f2d3624db757c9c31e480.tar.gz spack-e2c72e583f57a725171f2d3624db757c9c31e480.tar.bz2 spack-e2c72e583f57a725171f2d3624db757c9c31e480.tar.xz spack-e2c72e583f57a725171f2d3624db757c9c31e480.zip |
spack ci: Fix typo in error message (#30438)
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 71f39ef7e9..299f19a94d 100644 --- a/lib/spack/spack/ci.py +++ b/lib/spack/spack/ci.py @@ -1513,7 +1513,7 @@ def setup_spack_repro_version(repro_dir, checkout_commit, merge_commit=None): fail_on_error=False) if git.returncode != 0: - tty.error('Unable to clone your local spac repo:') + tty.error('Unable to clone your local spack repo:') tty.msg(clone_out) return False |