diff options
author | Stephan Bergmann <stephan.bergmann@allotropia.de> | 2024-01-02 15:19:02 +0100 |
---|---|---|
committer | Stephan Bergmann <stephan.bergmann@allotropia.de> | 2024-01-02 22:29:13 +0100 |
commit | 953ffde0ec80581c56c17bfec71e1b2817a3592d (patch) | |
tree | 975523123afc91af8594c62c7632e72cb0d267ec /solenv | |
parent | 16a698403447a1f5c1ec30da0f34e00e9ef795ce (diff) |
Hard-code --with-online-update-mar-channel=LOOnlineUpdater
(An upcoming change will add an instset/update-settings.ini file containing that
value, but using a GeneratedPackage for a single file instead of a directory
seems unsupported, so it will use the hard-coded value and a plain Package
instead.)
Change-Id: I12ffef4db71ce36be9096df674588b39c660e4de
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/161545
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <stephan.bergmann@allotropia.de>
(cherry picked from commit 6910b1e3511701de5f0541fcaa98babf530f55ce)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/161556
Diffstat (limited to 'solenv')
-rw-r--r-- | solenv/bin/modules/installer/scriptitems.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/solenv/bin/modules/installer/scriptitems.pm b/solenv/bin/modules/installer/scriptitems.pm index df76cb6704c1..18ccd81d2c87 100644 --- a/solenv/bin/modules/installer/scriptitems.pm +++ b/solenv/bin/modules/installer/scriptitems.pm @@ -655,7 +655,7 @@ sub replace_setup_variables my $updateid = $productname . "_" . $libo_version_major . "_" . $$languagestringref; $updateid =~ s/ /_/g; - my $updatechannel = $ENV{'ONLINEUPDATE_MAR_CHANNEL'}; + my $updatechannel = 'LOOnlineUpdater'; for ( my $i = 0; $i <= $#{$itemsarrayref}; $i++ ) { |