From 837ec6df1aa0df963882ae767f9e76448e5b6413 Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Tue, 12 Mar 2024 15:11:26 +0100 Subject: [PATCH] Fix incorrect `winget` syntax --- scripts/Windows/Software/Oh My Posh/Install.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/Windows/Software/Oh My Posh/Install.ps1 b/scripts/Windows/Software/Oh My Posh/Install.ps1 index bf605649..268a4db5 100644 --- a/scripts/Windows/Software/Oh My Posh/Install.ps1 +++ b/scripts/Windows/Software/Oh My Posh/Install.ps1 @@ -3,5 +3,5 @@ param($context); . "$PSScriptRoot/../../Scripts/Context.ps1"; [Context] $context = $context; -winget install --accept-source-agreements --accept-package-agreements -s winget --scope machine JanDeDobbeleer.OhMyPosh; +winget install --accept-source-agreements --accept-package-agreements -s winget --scope machine -e --id JanDeDobbeleer.OhMyPosh; . "$PSScriptRoot/../../Config/Oh My Posh/Install.ps1" $context;