2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-01-31 18:59:33 +00:00

98_inotify: bugfix for use

git-svn-id: https://svn.fhem.de/fhem/trunk@18472 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
marvin78 2019-01-31 18:54:00 +00:00
parent 2129dbcd20
commit d1df104858

View File

@ -4,17 +4,18 @@ package main;
use strict;
use warnings;
use Linux::Inotify2;
use Data::Dumper;
my $missingModule = "";
eval "use Data::Dumper;1" or $missingModule .= "Data::Dumper ";
eval "use Linux::Inotify2;1" or $missingModule .= "Linux::Inotify2 ";
eval "use File::Find;1" or $missingModule .= "File::Find ";
#######################
# Global variables
my $version = "0.5.7";
my $version = "0.5.8";
our $inotify;
our @watch;