Remove reference to deprecated spack md5 command (#6537)

This commit is contained in:
Adam J. Stewart 2017-12-01 07:31:40 -06:00 committed by Massimiliano Culpo
parent bd94be818a
commit 0ffd7f8918

View file

@ -54,8 +54,7 @@ def setup_parser(subparser):
def checksum(parser, args): def checksum(parser, args):
# Make sure the user provided a package and not a URL # Make sure the user provided a package and not a URL
if not valid_fully_qualified_module_name(args.package): if not valid_fully_qualified_module_name(args.package):
tty.die("`spack checksum` accepts package names, not URLs. " tty.die("`spack checksum` accepts package names, not URLs.")
"Use `spack md5 <url>` instead.")
# Get the package we're going to generate checksums for # Get the package we're going to generate checksums for
pkg = spack.repo.get(args.package) pkg = spack.repo.get(args.package)