From 248ac46d5fe71ce1230e36a176576580b346c6d7 Mon Sep 17 00:00:00 2001 From: djpbessems Date: Tue, 22 Jun 2021 10:36:21 +0200 Subject: [PATCH] Fix typo --- scripts/Install-WinGet.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/Install-WinGet.ps1 b/scripts/Install-WinGet.ps1 index e52ec2e..5d6d1c0 100644 --- a/scripts/Install-WinGet.ps1 +++ b/scripts/Install-WinGet.ps1 @@ -8,7 +8,7 @@ $InvokeRestMethodSplat = @{ Method = 'GET' } $InvokeWebRequestSplat = @{ - Uri = ((Invoke-RestMethod @InvokeRestMethodSplat).assets | Where-Object ${_.name -like '*.appxbundle'}).browser_download_url + Uri = ((Invoke-RestMethod @InvokeRestMethodSplat).assets | Where-Object {$_.name -like '*.appxbundle'}).browser_download_url Out = "$env:temp\winget.appxbundle" } Invoke-WebRequest @InvokeWebRequestSplat