Skip to content

Commit

Permalink
Fix argument
Browse files Browse the repository at this point in the history
  • Loading branch information
MatiasG19 committed Mar 4, 2024
1 parent a8590a3 commit d0ef729
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/sign.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export async function signApkFile(

// Verify
core.debug('Verifying signed APK')
await exec.exec(`"${apkSigner}"`, ['-verify', signedApkFile])
await exec.exec(`"${apkSigner}"`, ['verify', signedApkFile])

return signedApkFile
}
Expand Down Expand Up @@ -103,7 +103,7 @@ export async function signAabFile(

// Verify
core.debug('Verifying signed AAB')
await exec.exec(`"${jarSignerPath}"`, ['verify', aabFile])
await exec.exec(`"${jarSignerPath}"`, ['-verify', aabFile])

// Rename
const signedFile = aabFile.replace('.aab', '-signed.aab')
Expand Down

0 comments on commit d0ef729

Please sign in to comment.