FIX: saltarse lineas comentadas
This commit is contained in:
@ -19,7 +19,7 @@ class Schedule
|
||||
$commands = [];
|
||||
foreach ($schedule as $line) {
|
||||
$line = trim($line);
|
||||
if ($line === '') {
|
||||
if (trim($line) === '' or str_starts_with('#', $line)) {
|
||||
continue;
|
||||
}
|
||||
$data = $this->parseCommandLine($line);
|
||||
|
Reference in New Issue
Block a user