mirror of
https://github.com/bitcoin/bips.git
synced 2025-02-25 07:48:05 +01:00
9 lines
140 B
Bash
9 lines
140 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
cd "$(dirname "$0")"
|
||
|
mypy --no-error-summary reference.py
|
||
|
python3 reference.py
|
||
|
python3 gen_vectors_helper.py > /dev/null
|