This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Signal Defense — Bootstrap script for fresh machines (Windows PowerShell) | |
| # Downloads deps, authenticates GitHub, clones the repo, pulls LFS files. | |
| $ErrorActionPreference = "Continue" | |
| function Write-Info { param([string]$Msg) Write-Host $Msg -ForegroundColor Cyan } | |
| function Write-Success { param([string]$Msg) Write-Host $Msg -ForegroundColor Green } | |
| function Write-Warn { param([string]$Msg) Write-Host $Msg -ForegroundColor Yellow } | |
| function Write-Err { param([string]$Msg) Write-Host $Msg -ForegroundColor Red } |