aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRaphael Cotty <raphael.cotty@gmail.com>2021-09-18 23:46:55 +0200
committerRaphaƫl Cotty <raphael.cotty@gmail.com>2021-09-19 12:53:15 +0000
commitb13fab977aae622fd88a5b8e87bedd527c4cdb4d (patch)
tree6e0f074ab890ab293c4eb9fad21e65ff7c7d7cf1
parentee823732016bb0e98124f0fc3d109aa5e2e85c20 (diff)
Android: Correct aab generation command description
Change-Id: I2c67d35de4268215a38516b6ed8085c60df416ef Reviewed-by: Ivan Komissarov <ABBAPOH@gmail.com>
-rw-r--r--share/qbs/modules/Android/sdk/utils.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/share/qbs/modules/Android/sdk/utils.js b/share/qbs/modules/Android/sdk/utils.js
index a10ca69fc..36a88ddbb 100644
--- a/share/qbs/modules/Android/sdk/utils.js
+++ b/share/qbs/modules/Android/sdk/utils.js
@@ -393,7 +393,8 @@ function prepareBundletoolPackage(project, product, inputs, outputs, input, outp
args.push("--modules=" + baseFilePath);
args.push("--output=" + aabFilePath);
var cmd = new Command(product.java.interpreterFilePath, args);
- cmd.description = "generating " + aabFilePath.fileName;
+ var aabFileName = outputs["android.package_unsigned"][0].fileName;
+ cmd.description = "generating " + aabFileName;
cmds.push(cmd);
return cmds;