Fix push-strings script

This commit is contained in:
Fedor Indutny 2024-04-09 21:14:12 +02:00 committed by GitHub
parent fd73c0ff68
commit e533292d33
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -46,11 +46,11 @@ async function main() {
'json', 'json',
`--${boundaryString}`, `--${boundaryString}`,
'Content-Disposition: form-data; name="file"', 'Content-Disposition: form-data; name="file"; filename="_locales/en/messages.json"',
'Content-Type: text/plain', 'Content-Type: text/plain',
'', '',
await readFile('_locales/en/messages.json', 'utf8'), await readFile('_locales/en/messages.json', 'utf8'),
`--${boundaryString}`, `--${boundaryString}--`,
'', '',
]; ];