Skip to content

Commit

Permalink
Fix --apktool accidentally being required
Browse files Browse the repository at this point in the history
  • Loading branch information
niklashigi committed Apr 21, 2024
1 parent 472e52e commit ce83872
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ async function main() {

const apktool = new Apktool({
frameworkPath: path.join(tmpDir, 'framework'),
customPath: path.resolve(args.apktool),
customPath: args.apktool ? path.resolve(args.apktool) : undefined,
})
const uberApkSigner = new UberApkSigner()

Expand Down

0 comments on commit ce83872

Please sign in to comment.