Skip to content

Commit 09f059e

Browse files
🩹 [Patch]: Add Retry as a default prereq (#28)
## Description This pull request includes updates to the `scripts/main.ps1` file to add a new required module. * Added `Retry` to the list of required modules. * Changed double quotes to single quotes for the "Module commands:" string to maintain consistency. ## Type of change <!-- Use the check-boxes [x] on the options that are relevant. --> - [ ] 📖 [Docs] - [ ] 🪲 [Fix] - [x] 🩹 [Patch] - [ ] ⚠️ [Security fix] - [ ] 🚀 [Feature] - [ ] 🌟 [Breaking change] ## Checklist <!-- Use the check-boxes [x] on the options that are relevant. --> - [x] I have performed a self-review of my own code - [x] I have commented my code, particularly in hard-to-understand areas
1 parent 3da1dbf commit 09f059e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/main.ps1

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ param()
55

66
$requiredModules = @{
77
Utilities = @{}
8+
Retry = @{}
89
'powershell-yaml' = @{}
910
PSSemVer = @{}
1011
Pester = @{}
@@ -36,7 +37,7 @@ $requiredModules.GetEnumerator() | Sort-Object | ForEach-Object {
3637
Write-Host "Installed module: [$name]"
3738
Write-Host (Get-PSResource -Name $name | Select-Object * | Out-String)
3839

39-
Write-Host "Module commands:"
40+
Write-Host 'Module commands:'
4041
Write-Host (Get-Command -Module $name | Out-String)
4142
}
4243
}

0 commit comments

Comments
 (0)