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:
parent
5760ba1fa8
commit
6a03c478fe
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue