#!/bin/sh # script/setup: set up the repo for development after a fresh clone: # installs dependencies and the git pre-commit hook. set -eu ROOT="$(cd "$(dirname "$0")/.." && pwd -P)" main() { cd "$ROOT" "$ROOT/script/bootstrap" "$ROOT/script/install-precommit" } main "$@"