logo

live-bootstrap

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

source_manifest.py (445B)


  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. from lib.generator import Generator
  9. def main():
  10. """Generate a source manifest for a system"""
  11. print('\n'.join(map(' '.join, Generator.get_source_manifest())))
  12. if __name__ == "__main__":
  13. main()