]> git.openstreetmap.org Git - nominatim.git/blobdiff - utils/check_import_finished.php
switch remaining settings to dotenv format
[nominatim.git] / utils / check_import_finished.php
index 570378dd6b7ab8bfc79087285d6f68645ba878dd..6623f0c870c0a406205e698e376b7ba3a086457f 100755 (executable)
@@ -2,6 +2,8 @@
 
 require_once(CONST_LibDir.'/init-cmd.php');
 
+loadSettings(false);
+
 $term_colors = array(
                 'green' => "\033[92m",
                 'red' => "\x1B[31m",
@@ -166,7 +168,7 @@ END;
 
 
 
-if (CONST_Use_US_Tiger_Data) {
+if (getSettingBool('USE_US_TIGER_DATA')) {
     echo 'Checking TIGER table exists ... ';
     if ($oDB->tableExists('location_property_tiger')) {
         $print_success();