Kaydet (Commit) 32a32d57 authored tarafından Jan-Marek Glogowski's avatar Jan-Marek Glogowski Kaydeden (comit) Andras Timar

Fix perl errors in installer modules.

The equivalent of C break is Perl last; guess these are typos.

Change-Id: I1d61d319f2add029434ab5da7d9c01c7e807e8ac
Reviewed-on: https://gerrit.libreoffice.org/7188Reviewed-by: 's avatarAndras Timar <andras.timar@collabora.com>
Tested-by: 's avatarAndras Timar <andras.timar@collabora.com>
üst 1c7ea466
...@@ -84,7 +84,7 @@ sub add_profile_into_filelist ...@@ -84,7 +84,7 @@ sub add_profile_into_filelist
if ($file->{'modules'} eq $rootmodulegid) if ($file->{'modules'} eq $rootmodulegid)
{ {
$rootfile = $file; $rootfile = $file;
break; last;
} }
} }
if (! defined $rootfile) { if (! defined $rootfile) {
......
...@@ -90,7 +90,7 @@ sub get_createfolder_component ...@@ -90,7 +90,7 @@ sub get_createfolder_component
if ($file->{'modules'} eq $rootmodulegid) if ($file->{'modules'} eq $rootmodulegid)
{ {
$onefile = $file; $onefile = $file;
break; last;
} }
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment