7 lines
302 B
PowerShell
7 lines
302 B
PowerShell
Import-Module "$PSScriptRoot/../../Scripts/Context.ps1" -Force;
|
|
$path = "$HOME/Documents/TmForever";
|
|
$softwareName = "TmNationsForever";
|
|
|
|
function Invoke-BackupTmNations([Context] $context) {
|
|
$context.Backup($path, $context.SoftwareArchive($softwareName), @("-i@`"$PSScriptRoot/include.txt`""));
|
|
}
|