We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4c6b0a commit d2e081bCopy full SHA for d2e081b
1 file changed
scripts/pack-utils/xpi.mjs
@@ -38,7 +38,7 @@ async function packXpi(
38
const idFile = join(releasePath, `${fileName}-id.txt`);
39
// Move download file to output dir
40
await rename(res[0], out);
41
- await writeFile(idFile, itemConfig.id);
+ await writeFile(idFile, itemConfig.id, { encoding: 'utf-8' });
42
return out;
43
}
44
0 commit comments