We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49f3ff0 commit df85cd8Copy full SHA for df85cd8
src/infrastructure/env/PhabricatorEnv.php
@@ -108,6 +108,10 @@ private static function initializeCommonEnvironment() {
108
}
109
putenv('PATH='.$env_path);
110
111
+ // Write this back into $_ENV, too, so ExecFuture picks it up when creating
112
+ // subprocess environments.
113
+ $_ENV['PATH'] = $env_path;
114
+
115
PhabricatorEventEngine::initialize();
116
117
$translation = PhabricatorEnv::newObjectFromConfig('translation.provider');
0 commit comments