Add scripts for installing git

This commit is contained in:
Manuel Thalmann 2024-08-10 15:28:10 +02:00
parent bc8f73b185
commit f5d971922a
2 changed files with 82 additions and 0 deletions
scripts/Common/Software/git

View file

@ -0,0 +1,18 @@
param (
$Action,
[hashtable] $Arguments
)
. "$PSScriptRoot/../../Scripts/Software.ps1";
. "$PSScriptRoot/../../Types/InstallerAction.ps1";
Start-SoftwareInstaller @PSBoundParameters `
-Installer {
param(
[scriptblock] $Installer
)
& $Installer -Action ([InstallerAction]::Configure);
} `
-Configurator {
};