]> git.openstreetmap.org Git - nominatim.git/commitdiff
Improved warning message when looking for optional GB postcode file
authormarc tobias <mtmail@gmx.net>
Fri, 9 Nov 2018 10:06:17 +0000 (10:06 +0000)
committermarc tobias <mtmail@gmx.net>
Fri, 9 Nov 2018 10:06:17 +0000 (10:06 +0000)
lib/setup/SetupClass.php

index bd53260eb92d97fa040e595442043d6374998da2..5e5b16d6c04f08f68f648ba06d8f5f36d3516e51 100755 (executable)
@@ -154,10 +154,11 @@ class SetupFunctions
         $this->pgsqlRunScriptFile(CONST_BasePath.'/data/country_osm_grid.sql.gz');
         $this->pgsqlRunScriptFile(CONST_BasePath.'/data/gb_postcode_table.sql');
 
-        if (file_exists(CONST_BasePath.'/data/gb_postcode_data.sql.gz')) {
-            $this->pgsqlRunScriptFile(CONST_BasePath.'/data/gb_postcode_data.sql.gz');
+        $sPostcodeFilename = CONST_BasePath.'/data/gb_postcode_data.sql.gz';
+        if (file_exists($sPostcodeFilename)) {
+            $this->pgsqlRunScriptFile($sPostcodeFilename);
         } else {
-            warn('external UK postcode table not found.');
+            warn('optional external UK postcode table file ('.$sPostcodeFilename.') not found. Skipping.');
         }
 
         if (CONST_Use_Extra_US_Postcodes) {