BAPSicle/dev/install-githook.sh

6 lines
91 B
Bash
Raw Normal View History

2020-11-01 00:54:50 +00:00
#!/bin/bash
2021-04-10 19:25:18 +00:00
pip3 install autopep8
2020-11-01 00:54:50 +00:00
cd "$(dirname "$0")"
cp "./pre-commit" "../.git/hooks/"
2021-04-10 19:25:18 +00:00