10 lines
249 B
PowerShell
10 lines
249 B
PowerShell
#!/bin/pwsh
|
|
. "$PSScriptRoot/../../Scripts/Context.ps1";
|
|
|
|
function Install-Firefox {
|
|
param([Context] $context)
|
|
Write-Host "Installing Firefox";
|
|
choco install -y firefox;
|
|
. "$PSScriptRoot/../../Config/Firefox/Install.ps1" $context;
|
|
}
|