2023-06-07 20:21:01 +00:00
|
|
|
. "$PSScriptRoot/../../Scripts/Context.ps1";
|
|
|
|
|
2023-06-08 00:28:33 +00:00
|
|
|
$null = New-Module {
|
|
|
|
$path = "$env:PUBLIC/Documents/reWASD";
|
|
|
|
$softwareName = "reWASD";
|
|
|
|
|
2023-06-30 10:19:54 +00:00
|
|
|
function Backup-reWASD([Context] $context) {
|
2023-06-08 00:28:33 +00:00
|
|
|
$context.Backup($path, $context.SoftwareArchive($softwareName), @("-x@`"$PSScriptRoot/exclude.txt`""));
|
|
|
|
}
|
2023-06-07 20:21:01 +00:00
|
|
|
}
|