logo

live-bootstrap

Mirror of <https://github.com/fosslinux/live-bootstrap>

source_manifest.py (462B)


  1. #!/usr/bin/env python3
  2. """
  3. A helper application used to get a list of source files required
  4. for the bootstrapping process.
  5. """
  6. # SPDX-License-Identifier: GPL-3.0-or-later
  7. # SPDX-FileCopyrightText: 2023 Dor Askayo <dor.askayo@gmail.com>
  8. import argparse
  9. from lib.generator import Generator
  10. def main():
  11. """Generate a source manifest for a system"""
  12. print('\n'.join(map(' '.join, Generator.get_source_manifest())))
  13. if __name__ == "__main__":
  14. main()