2023-07-24 21:44:38 +00:00
|
|
|
#!/bin/pwsh
|
|
|
|
param($context)
|
|
|
|
|
|
|
|
. "$PSScriptRoot/../../Scripts/Context.ps1";
|
|
|
|
[Context] $context = $context;
|
|
|
|
|
|
|
|
choco install -y thunderbird;
|
2023-07-24 21:54:05 +00:00
|
|
|
. "$PSScriptRoot/../../Config/Thunderbird/Install.ps1" $context;
|