16 lines
400 B
PowerShell
16 lines
400 B
PowerShell
#!/bin/pwsh
|
|
. "$PSScriptRoot/../../Scripts/Context.ps1";
|
|
. "$PSScriptRoot/../../Scripts/BashScript.ps1";
|
|
|
|
$null = New-Module {
|
|
function Backup-Git([Context] $context) {}
|
|
|
|
function Restore-Git([Context] $context) {
|
|
Write-Host "Restoring git";
|
|
|
|
Start-BashScript @(
|
|
"bash `"$PSScriptRoot/../../../Common/Config/git/install.sh`"",
|
|
"rm ~/.bashrc");
|
|
}
|
|
}
|