Skip to content

Commit a1ac865

Browse files
committed
fix: pass lang variable to curio
1 parent 0104881 commit a1ac865

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

scripts/backup-helper/commands/commit.mjs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,11 @@ const parkingResultSchema = z
170170
* @returns {Promise<ParkingResult>}
171171
*/
172172
async function runParkingBinary(dir, target) {
173-
const result = await execa('curio', [
173+
const result = await execa({
174+
env: {
175+
LANG: 'en_US.UTF-8',
176+
},
177+
})('curio', [
174178
'toolbox',
175179
'import-pieces',
176180
'--source',

0 commit comments

Comments
 (0)