2 lines
136 B
PowerShell
2 lines
136 B
PowerShell
Get-Content .env | ForEach-Object { $name, $value = $_.Split('=', 2); [Environment]::SetEnvironmentVariable($name, $value, "Process") }
|