diff options
author | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2021-06-24 02:19:20 +0200 |
---|---|---|
committer | Gregory Becker <becker33@llnl.gov> | 2021-06-23 19:38:36 -0500 |
commit | c699e907fc436ecc2b153520040e5967f25dc7de (patch) | |
tree | b7399a40d89063e6eea1adabe3bef41ebb2dccc3 | |
parent | f1fe03cd5988acdf48dafd23f2cb1431a51e7b96 (diff) | |
download | spack-c699e907fc436ecc2b153520040e5967f25dc7de.tar.gz spack-c699e907fc436ecc2b153520040e5967f25dc7de.tar.bz2 spack-c699e907fc436ecc2b153520040e5967f25dc7de.tar.xz spack-c699e907fc436ecc2b153520040e5967f25dc7de.zip |
Update command to setup tutorial (#24488)
-rw-r--r-- | lib/spack/spack/cmd/tutorial.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/spack/spack/cmd/tutorial.py b/lib/spack/spack/cmd/tutorial.py index 6c0aa40a4a..1912a6f4d3 100644 --- a/lib/spack/spack/cmd/tutorial.py +++ b/lib/spack/spack/cmd/tutorial.py @@ -26,7 +26,7 @@ level = "long" # tutorial configuration parameters tutorial_branch = "releases/v0.16" -tutorial_mirror = "s3://spack-binaries-prs/tutorial/ecp21/mirror" +tutorial_mirror = "file:///mirror" tutorial_key = os.path.join(spack.paths.share_path, "keys", "tutorial.pub") # configs to remove @@ -78,7 +78,7 @@ def tutorial(parser, args): # Note that checkout MUST be last. It changes Spack under our feet. # If you don't put this last, you'll get import errors for the code # that follows (exacerbated by the various lazy singletons we use) - tty.msg("Ensuring we're on the releases/v0.15 branch") + tty.msg("Ensuring we're on the releases/v0.16 branch") git = which("git", required=True) with working_dir(spack.paths.prefix): git("checkout", tutorial_branch) |