toolchain: drop old Makefile and init.sh script along with git hooks and slim down Python requirements.txt to just what we need

This commit is contained in:
Rasmus Andersson 2022-06-03 10:28:21 -07:00
parent b0a23fb682
commit 585f56cee5
8 changed files with 138 additions and 1376 deletions

View file

@ -1,2 +1,6 @@
#!/bin/bash -e
bash init.sh
#!/bin/sh
# Uninstall git hook used by old toolchain
case "$0" in
*/.git/hooks/*) rm "$0";;
*) echo "Inter git hooks are no longer used"
esac