8 lines
314 B
PowerShell
8 lines
314 B
PowerShell
#!/bin/pwsh
|
|
param($context);
|
|
. "$PSScriptRoot/../../Scripts/Context.ps1";
|
|
|
|
[Context] $context = $context;
|
|
Install-Module -AcceptLicense -Scope AllUsers -Force Terminal-Icons;
|
|
powershell -c "Install-Module -Scope AllUsers -Force Terminal-Icons;";
|
|
. "$PSScriptRoot/../../Config/Terminal-Icons/Install.ps1" $context;
|