Skip to content

Commit

Permalink
fix: paths
Browse files Browse the repository at this point in the history
  • Loading branch information
dr5hn committed Oct 5, 2024
1 parent 31a7eb0 commit e8f36d9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/export_csv.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// Require Array2XML class which takes a PHP array and changes it to XML
require_once 'vendor/base.php';

$rootDir = dirname(dirname(__FILE__)).'/json';
$rootDir = dirname(dirname(__FILE__));
$files = array(
'countries' => array(
'from' => '/json/countries.json',
Expand Down
2 changes: 1 addition & 1 deletion scripts/export_yaml.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

use Symfony\Component\Yaml\Yaml;

$rootDir = dirname(dirname(__FILE__)).'/json';
$rootDir = dirname(dirname(__FILE__));
$files = array(
'regions' => array(
'from' => '/json/regions.json',
Expand Down

0 comments on commit e8f36d9

Please sign in to comment.