mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
Check for pygmentize
, not pgymentize
Summary: hehehe Test Plan: Reloaded /config/, no more bogus setup issuse. Reviewers: kwadwon, staticshock, chad Reviewed By: chad CC: aran Differential Revision: https://secure.phabricator.com/D5158
This commit is contained in:
parent
37ee66e27f
commit
ea3472e87b
1 changed files with 1 additions and 1 deletions
|
@ -7,7 +7,7 @@ final class PhabricatorSetupCheckPygment extends PhabricatorSetupCheck {
|
|||
$pygment = PhabricatorEnv::getEnvConfig('pygments.enabled');
|
||||
|
||||
if ($pygment) {
|
||||
list($err) = exec_manual('pgymentize -h');
|
||||
list($err) = exec_manual('pygmentize -h');
|
||||
if ($err) {
|
||||
$summary = pht(
|
||||
'You enabled pygments but the pygmentize script is not '.
|
||||
|
|
Loading…
Reference in a new issue