Skip to content

Commit 82fa39b

Browse files
committed
fix: temp not found issue on macOS #1
1 parent 91007eb commit 82fa39b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/decompiler/JadxDecompiler.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export class JadxDecompiler implements SmaliDecompiler {
1313
await fs.unlink(outputFilePath)
1414
} catch { }
1515
return new Promise<string>((resolve, reject) => {
16-
exec(`${this.jadxPath} "${inputFilePath}" -ds ${this.sourceOutputDir} ${options ?? ""}`, async (err, stdout, stderr) => {
16+
exec(`${this.jadxPath} "${inputFilePath}" -ds "${this.sourceOutputDir}" ${options ?? ""}`, async (err, stdout, stderr) => {
1717
outputChannel.append(stdout)
1818
if (err || stderr.length > 0) {
1919
outputChannel.show()

0 commit comments

Comments
 (0)