7caac2714e
Removed `run-semgrep.sh` and automatically run setup-dev.sh
12 lines
346 B
Bash
Executable File
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"
|