mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-20 20:40:56 +01:00
Fix config name typo in SetupCheckPygment
Summary: Use correct spelling of 'environment.append-paths' so that the current value of the variable will display as expected in the 'pygmentize Not Found' setup issue screen. Test Plan: * Enabled Pygments but haven't installed it * Follow 'unresolved setup issues' link to 'Not Found' screen * See that 'envinronment.append-paths' is None * Set 'environment.append-paths' * See that 'envinronment.append-paths' is still None * Apply this fix * See that 'environment.append-paths' is now '/usr/bin' Reviewers: epriestley Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D5555
This commit is contained in:
parent
7d35625ea9
commit
81389e79e7
1 changed files with 1 additions and 1 deletions
|
@ -24,7 +24,7 @@ final class PhabricatorSetupCheckPygment extends PhabricatorSetupCheck {
|
|||
->setSummary($summary)
|
||||
->setMessage($message)
|
||||
->addPhabricatorConfig('pygments.enabled')
|
||||
->addPhabricatorConfig('envinronment.append-paths');
|
||||
->addPhabricatorConfig('environment.append-paths');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue