fix putenv

This commit is contained in:
Sieciech 2021-08-29 09:13:54 +02:00
parent 5180445f7c
commit 178423d59e
1 changed files with 1 additions and 1 deletions

View File

@ -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) {