From ea3472e87bf99ebebacda4fc9a3ed34f2f85b5bd Mon Sep 17 00:00:00 2001 From: epriestley Date: Thu, 28 Feb 2013 10:46:04 -0800 Subject: [PATCH] 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 --- src/applications/config/check/PhabricatorSetupCheckPygment.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/applications/config/check/PhabricatorSetupCheckPygment.php b/src/applications/config/check/PhabricatorSetupCheckPygment.php index 7777356c9f..9c8d0481aa 100644 --- a/src/applications/config/check/PhabricatorSetupCheckPygment.php +++ b/src/applications/config/check/PhabricatorSetupCheckPygment.php @@ -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 '.