10 lines
319 B
PowerShell
10 lines
319 B
PowerShell
. "$PSScriptRoot/../../Scripts/Context.ps1";
|
|
|
|
$null = New-Module {
|
|
$path = "C:/tools/RetroArch-Win64";
|
|
$softwareName = "RetroArch";
|
|
|
|
function Invoke-BackupRetroArch([Context] $context) {
|
|
$context.Backup($path, $context.SoftwareArchive($softwareName), @("-i@`"$PSScriptRoot/include.txt`""));
|
|
}
|
|
}
|