From e2440b001e902b686e4e11b5ff24637ac2180dab Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Sun, 28 Jan 2024 14:36:07 +0100 Subject: [PATCH] Fix name param on get-nerdfonts --- src/NerdFonts/public/Get-NerdFont.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NerdFonts/public/Get-NerdFont.ps1 b/src/NerdFonts/public/Get-NerdFont.ps1 index 0721a52..c0132aa 100644 --- a/src/NerdFonts/public/Get-NerdFont.ps1 +++ b/src/NerdFonts/public/Get-NerdFont.ps1 @@ -19,7 +19,7 @@ # Name of the NerdFont to get [Parameter()] [SupportsWildcards()] - [string] $Name + [string] $Name = '*' ) $release = Invoke-RestMethod "$script:NerdFontsReleaseURL/latest" -Verbose:$false