Source code for spack.cmd.restage

# Copyright 2013-2022 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)

import llnl.util.tty as tty

import spack.cmd
import spack.cmd.common.arguments as arguments
import spack.repo

description = "revert checked out package source code"
section = "build"
level = "long"


[docs]def setup_parser(subparser): arguments.add_common_arguments(subparser, ['specs'])
[docs]def restage(parser, args): if not args.specs: tty.die("spack restage requires at least one package spec.") specs = spack.cmd.parse_specs(args.specs, concretize=True) for spec in specs: package = spack.repo.get(spec) package.do_restage()