]> wagnertech.de Git - mfinanz.git/blobdiff - scripts/installation_check.pl
installation_check prüft jetzt auch auf Versionen.
[mfinanz.git] / scripts / installation_check.pl
index c7a7cdc5a249f4880e4706388f5f6cbf0f9d8ec3..6eca871891425fa10e15010a5ce3d638621610a7 100755 (executable)
@@ -10,7 +10,11 @@ use SL::InstallationCheck;
 $| = 1;
 
 foreach my $module (@SL::InstallationCheck::required_modules) {
-  print("Looking for $module->{name}...");
+  if ($module->{version}) {
+    print("Looking for $module->{name} $module->{version}...");
+  } else {
+    print("Looking for $module->{name}...");
+  }
   if (!SL::InstallationCheck::module_available($module->{"name"})) {
     print(" NOT found\n" .
           "  The module '$module->{name}' is not available on your system.\n" .