X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/2cbc9d8f12ae6c7e9345053fa75d136041872932..8081896bc0e3933c7c8a497a012c674c125de66e:/lib/setup/SetupClass.php diff --git a/lib/setup/SetupClass.php b/lib/setup/SetupClass.php index 71da57cf..b422ded1 100755 --- a/lib/setup/SetupClass.php +++ b/lib/setup/SetupClass.php @@ -417,8 +417,10 @@ class SetupFunctions $aFilenames = glob(CONST_Tiger_Data_Path.'/*.sql'); info('Found '.count($aFilenames).' SQL files in path '.CONST_Tiger_Data_Path); - if (empty($aFilenames)) return; - + if (empty($aFilenames)) { + warn('Tiger data import selected but no files found in path '.CONST_Tiger_Data_Path); + return; + } $sTemplate = file_get_contents(CONST_BasePath.'/sql/tiger_import_start.sql'); $sTemplate = $this->replaceSqlPatterns($sTemplate);