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.
1 parent 7daac2e commit bd73f91Copy full SHA for bd73f91
scripts/main.ps1
@@ -5,6 +5,11 @@
5
[CmdletBinding()]
6
param()
7
8
+'platyPS' | ForEach-Object {
9
+ Install-PSResource -Name $_ -WarningAction SilentlyContinue -TrustRepository -Repository PSGallery
10
+ Import-Module -Name $_
11
+}
12
+
13
$path = (Join-Path -Path $PSScriptRoot -ChildPath 'helpers') | Get-Item | Resolve-Path -Relative
14
Write-Host "::group::Loading helper scripts from [$path]"
15
Get-ChildItem -Path $path -Filter '*.ps1' -Recurse | Resolve-Path -Relative | ForEach-Object {
0 commit comments