PortValhalla/scripts/Windows/Software/git/Manage.ps1

9 lines
264 B
PowerShell
Raw Normal View History

2023-06-07 20:52:34 +00:00
. "$PSScriptRoot/../../Scripts/Context.ps1";
2023-06-07 20:58:42 +00:00
2023-06-08 00:28:33 +00:00
$null = New-Module {
function Invoke-BackupGit([Context] $context) {}
2023-06-22 18:44:40 +00:00
function Invoke-RestoreGit([Context] $context) {
2023-06-22 18:58:58 +00:00
Start-Process -Wait "$PSScriptRoot/../../../Common/Config/git/install.sh";
2023-06-22 18:44:40 +00:00
}
2023-06-08 00:28:33 +00:00
}