Skip to content

Commit 2d47f65

Browse files
committed
fix: latest-linux-arm64.yml filename
1 parent ca4cebb commit 2d47f65

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

scripts/extend-deb-postinst.mjs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,4 +120,8 @@ latestYaml.files = files;
120120
console.log('\n\nsha512: ', sha512);
121121
console.log('\n\nlatestYaml after modification: ', latestYaml);
122122

123-
fs.writeFileSync('latest-linux.yml', yaml.dump(latestYaml, { lineWidth: -1 }), 'utf-8');
123+
fs.writeFileSync(
124+
`latest-linux${arch === 'arm64' ? '-arm64' : ''}.yml`,
125+
yaml.dump(latestYaml, { lineWidth: -1 }),
126+
'utf-8'
127+
);

0 commit comments

Comments
 (0)