Skip to content

Commit

Permalink
Remove unneeded opening bracket
Browse files Browse the repository at this point in the history
  • Loading branch information
craddm committed Nov 15, 2023
1 parent 099857e commit ca1ea3a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ if (-not $config.sre.repositories.network.name) {
# Set PyPI and CRAN locations on the SRD
$null = Set-AzContext -SubscriptionId $config.sre.subscriptionName -ErrorAction Stop
$scriptPath = Join-Path $PSScriptRoot ".." "remote" "network_configuration" "scripts" "update_mirror_settings.sh"
$repositoryFacingVms = Get-AzVM | Where-Object { ($_.ResourceGroupName -eq $config.sre.srd.rg)
$repositoryFacingVms = Get-AzVM | Where-Object ($_.ResourceGroupName -eq $config.sre.srd.rg)
foreach ($VM in $repositoryFacingVms) {
Add-LogMessage -Level Info "Ensuring that PyPI and CRAN locations are set correctly on $($VM.Name)"
$params = @{
Expand Down

0 comments on commit ca1ea3a

Please sign in to comment.