7 lines
282 B
PowerShell
7 lines
282 B
PowerShell
. "$PSScriptRoot/../../Scripts/Context.ps1";
|
|
$path = "$HOME/Documents/ManiaPlanet";
|
|
$softwareName = "ManiaPlanet";
|
|
|
|
function Invoke-BackupManiaPlanet([Context] $context) {
|
|
$context.Backup($path, $context.SoftwareArchive($softwareName), @("-i@`"$PSScriptRoot/include.txt`""));
|
|
}
|