Files
brent.edwards 7caac2714e refactor: changes requested by Rui
Removed `run-semgrep.sh` and automatically run setup-dev.sh
2026-02-11 00:59:58 +00:00

12 lines
346 B
Bash
Executable File

#!/usr/bin/env bash
# Post-create hook for the VS Code Dev Container.
# Called automatically by devcontainer.json after the container is created.
# Delegates to the shared developer-setup script so that the logic lives in
# one place.
set -euo pipefail
REPO_ROOT="$(cd "$(dirname "$0")/.." && pwd)"
exec bash "$REPO_ROOT/scripts/setup-dev.sh"