Merge pull request #544 from AndrewDemski-ad-gmail-com/patch-6

Update Winget-Upgrade.ps1
pull/569/head
Romain 2024-02-19 12:11:01 +01:00 committed by GitHub
commit 1d39ed37e1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@
#Get the Working Dir
$Script:WorkingDir = $PSScriptRoot
#Get Functions
Get-ChildItem "$WorkingDir\functions" | ForEach-Object { . $_.FullName }
Get-ChildItem "$WorkingDir\functions" -File -Filter "*.ps1" -Depth 0 | ForEach-Object { . $_.FullName }
<# MAIN #>