@@ -81,9 +81,9 @@ discard block |
||
81 | 81 | // We want to get output from stdout, not from stderr. |
82 | 82 | // Therefore, we use proc_open. |
83 | 83 | $descriptorspec = array( |
84 | - 0 => array("pipe", "r"), // stdin |
|
85 | - 1 => array("pipe", "w"), // stdout |
|
86 | - 2 => array("pipe", "w"), // stderr |
|
84 | + 0 => array("pipe", "r"), // stdin |
|
85 | + 1 => array("pipe", "w"), // stdout |
|
86 | + 2 => array("pipe", "w"), // stderr |
|
87 | 87 | ); |
88 | 88 | $pipes = array(); |
89 | 89 | |
@@ -151,9 +151,9 @@ discard block |
||
151 | 151 | } |
152 | 152 | } elseif (Environment::isWindows() && Environment::getArchitecture() == 64) { |
153 | 153 | if (version_compare($version, '4.0.0') >= 0) { |
154 | - return "https://nodejs.org/dist/v" . $version . "/win-x64/node.exe"; |
|
154 | + return "https://nodejs.org/dist/v".$version."/win-x64/node.exe"; |
|
155 | 155 | } else { |
156 | - return "https://nodejs.org/dist/v" . $version . "/x64/node.exe"; |
|
156 | + return "https://nodejs.org/dist/v".$version."/x64/node.exe"; |
|
157 | 157 | } |
158 | 158 | } elseif (Environment::isMacOS() && Environment::getArchitecture() == 32) { |
159 | 159 | return "https://nodejs.org/dist/v".$version."/node-v".$version."-darwin-x86.tar.gz"; |