1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 01:08:50 +02: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:
epriestley 2013-02-28 10:46:04 -08:00
parent 37ee66e27f
commit ea3472e87b

View file

@ -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 '.