Skip to content

Commit 0d9e1f9

Browse files
authored
Merge pull request #16497 from github/fix-encoding-bug-in-archival-script
Fix encoding bug in archival script
2 parents 956d122 + 48413d9 commit 0d9e1f9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

script/archive-enterprise-version.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ class RewriteAssetPathsPlugin {
6666

6767
await fs
6868
.promises
69-
.writeFile(filePath, newBody)
69+
.writeFile(filePath, newBody, 'binary')
7070
})
7171
}
7272
}

0 commit comments

Comments
 (0)