Add copyright header to make.bat - #178
Conversation
|
Heads up on the red Where it fails: the Root cause:
Why this PR is not implicated: the change adds a comment to The last successful run of this workflow on Fixing it is a separate concern from this copyright-header change, so I have deliberately left it out of scope. The minimal repair would be pinning |
The Open Source Automated Checkup flags make.bat as the only source file in the repo missing a copyright header (all other scanned files already carry one). Adds the standard Meta OSS MIT header using batch-file comment syntax.
624c938 to
967faf8
Compare
Summary
Meta's Open Source Automated Checkup flags this repository for the Copyright Headers requirement.
make.batis the only scanned source file in the repo missing a copyright header — every other file already carries one, and the remaining files are either binary or covered by the checkup's global extension/path exemptions.This adds the standard Meta OSS MIT header to
make.batusing batch-file comment syntax (@REM), placed above@echo offso it stays within the first 16 lines that the checker inspects.Test plan
Comment-only change; no functional impact.
make.batbehaviour is unchanged —@REMlines are batch comments and the leading@keeps them from being echoed.