Fresh start - excluded large ROM JSON files

This commit is contained in:
OpenClaw Agent
2026-04-11 09:45:12 -05:00
commit 5deb387aa6
395 changed files with 47744 additions and 0 deletions

10
scripts/backup-zip.ps1 Normal file
View File

@@ -0,0 +1,10 @@
$t = "C:\Users\admin\.clawdbot-backup-temp\clawd"
$timestamp = Get-Date -Format "yyyy-MM-dd_HHmmss"
$b = "P:\Clawdbot-Backups\backup_$timestamp.zip"
Compress-Archive -Path "$t\*" -DestinationPath $b -Force
$s = [math]::Round((Get-Item $b).Length / 1MB, 2)
Write-Host "Backup complete: $b ($s MB)" -ForegroundColor Green
Remove-Item -Recurse -Force "C:\Users\admin\.clawdbot-backup-temp" -ErrorAction SilentlyContinue