We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a2697c commit cb4034aCopy full SHA for cb4034a
lib/app-utils.js
@@ -265,7 +265,11 @@ export async function unzipFile(archivePath) {
265
_.isEmpty(useSystemUnzipEnv) || !['0', 'false'].includes(_.toLower(useSystemUnzipEnv));
266
const tmpRoot = await tempDir.openDir();
267
try {
268
- await zip.extractAllTo(archivePath, tmpRoot, {useSystemUnzip});
+ await zip.extractAllTo(archivePath, tmpRoot, {
269
+ useSystemUnzip,
270
+ // https://github.com/appium/appium/issues/14100
271
+ fileNamesEncoding: 'utf8',
272
+ });
273
} catch (e) {
274
await fs.rimraf(tmpRoot);
275
throw e;
0 commit comments