diff options
author | Stephan Bergmann <stephan.bergmann@allotropia.de> | 2023-12-06 16:33:16 +0100 |
---|---|---|
committer | Stephan Bergmann <stephan.bergmann@allotropia.de> | 2023-12-06 18:42:10 +0100 |
commit | cc3fb303db41492eccf845f34581b462c6ee24ec (patch) | |
tree | b33f5652f14465fe107a5fae64e58493e5542cd9 /bin | |
parent | e8ac98c6569f8c462e754a3142aeb9f433588ec8 (diff) |
Fix apparent typo in make create-update-info
157298bb808a943616991927f9370a86c1f2ca48 "android and bin/update: make pythonic"
had introduced this apparent typo, so that `make create-update-info` would now
fail (and no idea if that make target would still do anything useful, beyond
this initial hurdle)
Change-Id: I63c4e87e06370d99e5d036ce5c7f2a5bda3c1554
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/160398
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <stephan.bergmann@allotropia.de>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/update/create_full_mar.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/update/create_full_mar.py b/bin/update/create_full_mar.py index 39cb23f1f20e..58fd7fbef170 100755 --- a/bin/update/create_full_mar.py +++ b/bin/update/create_full_mar.py @@ -25,7 +25,7 @@ def main(): update_config = args.update_config filename_prefix = args.filename_prefix workdir = args.workdir - product_name = args.update_config + product_name = args.product_name if len(update_config) == 0: print("missing update config") |