X-Git-Url: https://git.openstreetmap.org/nominatim.git/blobdiff_plain/a71200a57a2417e0c5dfba4fe42ecdb371da3dba..6a3c6c43ea7133c934834ce1face9212f4e3d239:/utils/imports.php diff --git a/utils/imports.php b/utils/imports.php index fce65ab9..07bc9c45 100755 --- a/utils/imports.php +++ b/utils/imports.php @@ -7,7 +7,7 @@ ini_set('memory_limit', '800M'); $aCMDOptions = array( - "Create and setup nominatim search system", + 'Create and setup nominatim search system', array('help', 'h', 0, 1, 0, 0, false, 'Show Help'), array('quiet', 'q', 0, 1, 0, 0, 'bool', 'Quiet output'), array('verbose', 'v', 0, 1, 0, 0, 'bool', 'Verbose output'), @@ -29,7 +29,7 @@ if (isset($aCMDResult['parse-tiger'])) { preg_match('#([0-9]{5})_(.*)#', basename($sImportFile), $aMatch); $sCountyID = $aMatch[1]; - echo "Processing ".$sCountyID."...\n"; + echo 'Processing '.$sCountyID."...\n"; $sUnzipCmd = "unzip -d $sTempDir $sImportFile"; exec($sUnzipCmd);