Commit: 66ef4c100a1e31749d797e057f0dd7100162408d Author: Anatol Belski <a...@php.net> Tue, 31 Jul 2018 20:13:35 +0200 Parents: 4287a34caba8a69952882fbb6ef423a70f44fcfe Branches: master
Link: http://git.php.net/?p=web/rmtools.git;a=commitdiff;h=66ef4c100a1e31749d797e057f0dd7100162408d Log: Add git to the path Changed paths: M include/BuildVC.php Diff: diff --git a/include/BuildVC.php b/include/BuildVC.php index 51391db..8fdfab7 100644 --- a/include/BuildVC.php +++ b/include/BuildVC.php @@ -78,6 +78,12 @@ class BuildVC { $env['NODEBUG'] = "1"; } + foreach ($env as $k => &$v) { + if (strtolower($k) == "path") { + $v = 'c:\apps\git\bin;' . $v; + } + } + $this->env = $env; $this->pgo_init_lock_fd = NULL; -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php