Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
benbalter committed Apr 18, 2024
1 parent 164d4d4 commit b73cf28
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions jekyll-exporter.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@
wp_die( 'Jekyll Export requires PHP 5.3 or later' );
}

require_once dirname( __FILE__ ) . '/lib/cli.php';
require_once dirname( __FILE__ ) . '/vendor/autoload.php';
require_once __DIR__ . '/lib/cli.php';
require_once __DIR__ . '/vendor/autoload.php';

use League\HTMLToMarkdown\HtmlConverter;
use League\HTMLToMarkdown\Converter\TableConverter;
Expand Down
1 change: 0 additions & 1 deletion tests/test-wordpress-to-jekyll-exporter.php
Original file line number Diff line number Diff line change
Expand Up @@ -412,5 +412,4 @@ function test_copy_recursive() {
$this->assertTrue( file_exists( $jekyll_export->dir . '/foo.txt' ) );
$this->assertTrue( file_exists( $jekyll_export->dir . '/folder/foo.txt' ) );
}

}

0 comments on commit b73cf28

Please sign in to comment.