CycloneDX / specification

OWASP CycloneDX is a full-stack Bill of Materials (BOM) standard that provides advanced supply chain capabilities for cyber risk reduction. SBOM, SaaSBOM, HBOM, AI/ML-BOM, CBOM, OBOM, MBOM, VDR, and VEX
https://cyclonedx.org/
Apache License 2.0
338 stars 57 forks source link

add headers to `*.textproto` #393

Closed jkowalleck closed 4 months ago

jkowalleck commented 4 months ago

fix https://github.com/CycloneDX/specification/issues/392

jkowalleck commented 4 months ago

used to automated mod: (fish shell syntax)

for f in *.textproto; mv "$f" "$f".o; and echo -e '# proto-file: schema/bom-1.6.proto\n# proto-message: Bom\n' > "$f"; and cat "$f".o >> "$f"; and rm "$f".o;  end