Skip to content

Commit

Permalink
fix: report if bundletool is missing
Browse files Browse the repository at this point in the history
  • Loading branch information
ajinasokan committed Mar 11, 2023
1 parent a8126ed commit 3d9fa7a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions aab.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ import (

func buildAAB() {
cmd := exec.Command("bundletool", "build-bundle", "--modules=bundle.zip", "--output=app.aab")
if cmd.Err != nil {
LogF("build", cmd.Err)
}
cmd.Dir = "build"
out, err := cmd.CombinedOutput()
if err != nil {
Expand Down

0 comments on commit 3d9fa7a

Please sign in to comment.