[Libreoffice-commits] core.git: solenv/bin

Markus Mohrhard markus.mohrhard at googlemail.com
Fri Aug 25 05:45:29 UTC 2017


 solenv/bin/modules/installer/scriptitems.pm |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 2b78b9feab9521e614b9edae17709cb6e2001292
Author: Markus Mohrhard <markus.mohrhard at googlemail.com>
Date:   Fri Aug 25 07:42:14 2017 +0200

    updater: fix the handling of ~ in the update config
    
    Change-Id: I5c07039e336de9362fdd92be29de516da0846998

diff --git a/solenv/bin/modules/installer/scriptitems.pm b/solenv/bin/modules/installer/scriptitems.pm
index 98b41f7b484a..db2b67c5c9bb 100644
--- a/solenv/bin/modules/installer/scriptitems.pm
+++ b/solenv/bin/modules/installer/scriptitems.pm
@@ -659,7 +659,7 @@ sub replace_setup_variables
     my $updatechannel = "";
     if ( $ENV{'UPDATE_CONFIG'} && $ENV{'UPDATE_CONFIG'} ne "")
     {
-        open(CONFIG, $ENV{'UPDATE_CONFIG'});
+        open(CONFIG, glob($ENV{'UPDATE_CONFIG'}));
         while (<CONFIG>)
         {
             chomp;


More information about the Libreoffice-commits mailing list