Fixes: 1) Suppress unnecessary output from New-Item calls to improve script clarity; Extra: 1) Minor refactor to ensure sorted and formatted output of environment variables; 2) Add consistent structure and efficiency improvements to the script;
51 lines
No EOL
1 KiB
PowerShell
51 lines
No EOL
1 KiB
PowerShell
#!/usr/bin/env pwsh
|
|
Set-StrictMode -Version Latest
|
|
$ErrorActionPreference = 'Stop'
|
|
|
|
$envFile = '.env'
|
|
|
|
if (-not (Test-Path $envFile))
|
|
{
|
|
Write-Error ".env file not found in the current directory."
|
|
exit 1
|
|
}
|
|
|
|
$envVars = @{ }
|
|
|
|
Get-Content $envFile | ForEach-Object {
|
|
$line = $_.Trim()
|
|
if ($line -eq '' -or $line.StartsWith('#'))
|
|
{
|
|
return
|
|
}
|
|
if ($line -notmatch '=')
|
|
{
|
|
return
|
|
}
|
|
|
|
$m = [Regex]::Match($line, '^\s*([^=]+?)\s*=\s*(.*)$')
|
|
if (-not $m.Success)
|
|
{
|
|
return
|
|
}
|
|
|
|
$key = $m.Groups[1].Value
|
|
$value = $m.Groups[2].Value
|
|
|
|
if (( $value.StartsWith('"') -and $value.EndsWith('"')) -or
|
|
( $value.StartsWith("'") -and $value.EndsWith("'")))
|
|
{
|
|
$value = $value.Substring(1, $value.Length - 2)
|
|
}
|
|
|
|
New-Item -Path Env:\$key -Value $value | Out-Null
|
|
$envVars[$key] = $value
|
|
}
|
|
|
|
if ($envVars.Count -gt 0)
|
|
{
|
|
$formatted = ($envVars.GetEnumerator() | Sort-Object Name | ForEach-Object {
|
|
"$( $_.Key )=$( $_.Value )"
|
|
}) -join ';'
|
|
Write-Host $formatted
|
|
} |