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