fix: generated release checksum output format (#2771)

Ref: https://www.gnu.org/software/coreutils/manual/coreutils#cksum-output-modes-1

Co-authored-by: be5invis <belleve@typeof.net>
This commit is contained in:
Jesse Jackson 2025-05-18 16:37:50 -05:00 committed by GitHub
parent 5760ba1fa8
commit 6a03c478fe
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -9,7 +9,7 @@ export default async function main(fromPaths, outPath) {
for (const filePath of fromPaths) {
console.log(`Checking ${filePath}...`);
o.write(`${await hashFile(filePath)}\t${path.basename(filePath)}\n`);
o.write(`${await hashFile(filePath)} ${path.basename(filePath)}\n`);
}
o.end();