2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-13 09:12:19 +00:00

Meta.pm: fix to read update data

git-svn-id: https://svn.fhem.de/fhem/trunk@18955 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
jpawlowski 2019-03-18 08:35:59 +00:00
parent 5a501c861c
commit ab4ee5a3ad

View File

@ -2231,7 +2231,7 @@ sub __GetUpdatedata {
# if there are 3rd party source file repositories involved
if ( open( $fh, '<' . $attr{global}{modpath} . '/FHEM/controls.txt' ) ) {
while ( my $l = <$fh> ) {
push @fileList, $1 if ( $l =~ m/([^\/\s]+)$/ );
push @fileList, 'FHEM/' . $1 if ( $l =~ m/([^\/\s]+)$/ );
}
close($fh);
}
@ -2516,7 +2516,7 @@ sub __SetXVersion {
"description": "n/a"
}
},
"version": "v0.3.0",
"version": "v0.3.1",
"release_status": "testing",
"author": [
"Julian Pawlowski <julian.pawlowski@gmail.com>"