11 lines
140 B
Bash
Executable file
11 lines
140 B
Bash
Executable file
#!/bin/sh
|
|
# Setups the repository.
|
|
|
|
# Stop on errors
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/.."
|
|
script/bootstrap
|
|
|
|
pre-commit install
|
|
pip3 install -e .
|