Skip to content

Commit

Permalink
greyhole-dfree was broken; missing required classes
Browse files Browse the repository at this point in the history
Fixes #235
  • Loading branch information
gboudreau committed Jun 18, 2020
1 parent 81723f0 commit aadb2a9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions greyhole-dfree.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/greyhole-php
<?php
/*
Copyright 2009-2014 Guillaume Boudreau
Copyright 2009-2020 Guillaume Boudreau
This file is part of Greyhole.
Expand All @@ -19,7 +19,9 @@
along with Greyhole. If not, see <http://www.gnu.org/licenses/>.
*/

include('includes/common.php');
require_once('includes/common.php');
require_once('includes/CLI/CommandLineHelper.php'); // Command line helper (abstract classes, command line definitions & parsing, Runners, etc.)
require_once('includes/DaemonRunner.php');
ConfigHelper::parse();

$total_space = 0;
Expand Down

0 comments on commit aadb2a9

Please sign in to comment.