#!/usr/bin/env bash # Usage: ./develop.sh [flags...] [-- extra server args...] # # This is a thin wrapper that delegates to the Go development orchestrator # at scripts/develop. See that package for the full implementation. set -euo pipefail cd "$(dirname "${BASH_SOURCE[0]}")/.." make -j MAKE_TIMED=1 build/.bin/develop exec build/.bin/develop "$@"