Skip to content

Commit

Permalink
fix(cli): correct build path for non flavor builds (#7281) (#7290)
Browse files Browse the repository at this point in the history
Co-authored-by: Vasyl Mazur <MazVasyl@gmail.com>
  • Loading branch information
markemer and VIMHaos committed Feb 26, 2024
1 parent 1c45b81 commit 9b71399
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/src/android/build.ts
Expand Up @@ -38,7 +38,7 @@ export async function buildAndroid(
const releaseDir = releaseTypeIsAAB
? flavor !== ''
? `${flavor}Release`
: 'Release'
: 'release'
: flavor !== ''
? join(flavor, 'release')
: 'release';
Expand Down

0 comments on commit 9b71399

Please sign in to comment.