Skip to content

Commit

Permalink
Fix --apktool accidentally being required
Browse files Browse the repository at this point in the history
niklashigi committed Apr 21, 2024

Verified

This commit was signed with the committer’s verified signature.
niklashigi Niklas Higi
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
@@ -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()

0 comments on commit ce83872

Please sign in to comment.