fix putenv
This commit is contained in:
parent
5180445f7c
commit
178423d59e
|
@ -61,7 +61,7 @@ class PutEnv {
|
||||||
if (strlen($next) === 0 || $next[0] !== '=') {
|
if (strlen($next) === 0 || $next[0] !== '=') {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
$this->content[$l] = $key . '=' . $value;
|
$this->content[$l] = $key . '=' . $value . PHP_EOF;
|
||||||
$changed++;
|
$changed++;
|
||||||
}
|
}
|
||||||
if ($changed === 0) {
|
if ($changed === 0) {
|
||||||
|
|
Loading…
Reference in New Issue