Skip to content

Commit

Permalink
Fixed rebuildParsers.php (#686)
Browse files Browse the repository at this point in the history
phpyacc is a sh file and should not be run via the php interpreter, but directly.
  • Loading branch information
MikaelMayer committed Jul 16, 2020
1 parent 69c5d48 commit d8b19d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion grammar/rebuildParsers.php
Expand Up @@ -16,7 +16,7 @@
$kmyacc = getenv('KMYACC');
if (!$kmyacc) {
// Use phpyacc from dev dependencies by default.
$kmyacc = PHP_BINARY . ' ' . __DIR__ . '/../vendor/bin/phpyacc';
$kmyacc = __DIR__ . '/../vendor/bin/phpyacc';
}

$options = array_flip($argv);
Expand Down

0 comments on commit d8b19d7

Please sign in to comment.