PortValhalla/scripts/Windows/Software/osu!lazer/Manage.ps1

10 lines
338 B
PowerShell
Raw Normal View History

2023-06-07 18:24:43 +00:00
. "$PSScriptRoot/../../Scripts/Context.ps1";
2023-06-08 00:28:33 +00:00
$null = New-Module {
$path = "$env:APPDATA/osu";
$softwareName = "osu!lazer";
function Invoke-BackupOsuLazer([Context] $context) {
$context.Backup($path, $context.SoftwareArchive($softwareName), @("-i@`"$PSScriptRoot/include.txt`"", "-i!*.realm", "-i!*.db"));
}
2023-06-07 18:24:43 +00:00
}