Initial shared Copilot resources scaffold

This commit is contained in:
2026-04-23 15:46:34 -04:00
commit adfcb83ab6
44 changed files with 2249 additions and 0 deletions

12
install/update.ps1 Normal file
View File

@@ -0,0 +1,12 @@
$ErrorActionPreference = 'Stop'
$ScriptDir = Split-Path -Parent $MyInvocation.MyCommand.Path
$RepoRoot = Split-Path -Parent $ScriptDir
if (Test-Path -LiteralPath (Join-Path $RepoRoot '.git')) {
git -C $RepoRoot pull --ff-only
} else {
Write-Host 'Skipping git pull because this repository is not initialized as a git repository yet.'
}
& (Join-Path $ScriptDir 'verify.ps1') -Quick