We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 21746d4 + 0e23f4f commit 01a88b2Copy full SHA for 01a88b2
scripts/prepdocs.ps1
@@ -5,6 +5,10 @@ Write-Host ""
5
$output = azd env get-values
6
7
foreach ($line in $output) {
8
+ if (!$line.Contains('=')) {
9
+ continue
10
+ }
11
+
12
$name, $value = $line.Split("=")
13
$value = $value -replace '^\"|\"$'
14
[Environment]::SetEnvironmentVariable($name, $value)
0 commit comments