Add scripts for installing git
This commit is contained in:
parent
bc8f73b185
commit
f5d971922a
2 changed files with 82 additions and 0 deletions
scripts/Common/Software/git
18
scripts/Common/Software/git/Manage.ps1
Normal file
18
scripts/Common/Software/git/Manage.ps1
Normal 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 {
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue