Source code for spack.hooks.write_install_manifest

# 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 spack.verify


[docs]def post_install(spec): if not spec.external: spack.verify.write_manifest(spec)