Initial sanitized SmartSpeaker snapshot

This commit is contained in:
ben
2026-07-13 21:13:19 -07:00
commit ac26dcc238
66 changed files with 11438 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
Write-Host "Cleaning build files..." -ForegroundColor Red
if (Test-Path "build") {
Remove-Item -Path "build" -Recurse -Force
Write-Host "Build folder successfully removed." -ForegroundColor Green
} else {
Write-Host "Nothing to clean. Build folder does not exist." -ForegroundColor Yellow
}