8 lines
275 B
PowerShell
8 lines
275 B
PowerShell
|
#!/bin/pwsh
|
||
|
param($context);
|
||
|
. "$PSScriptRoot/../../Scripts/Context.ps1";
|
||
|
|
||
|
[Context] $context = $context;
|
||
|
winget install --accept-source-agreements --accept-package-agreements -s winget JanDeDobbeleer.OhMyPosh;
|
||
|
. "$PSScriptRoot/../../Config/Oh My Posh/Install.ps1" $context;
|