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

18
install/update.sh Normal file
View File

@@ -0,0 +1,18 @@
#!/usr/bin/env bash
set -euo pipefail
script_dir="$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd -P)"
repo_root="$(cd -- "$script_dir/.." && pwd -P)"
main() {
if [[ -d "$repo_root/.git" ]]; then
git -C "$repo_root" pull --ff-only
else
printf 'Skipping git pull because this repository is not initialized as a git repository yet.\n'
fi
"$script_dir/verify.sh" --quick
}
main "$@"