This commit is contained in:
Jordan Bancino 2022-07-30 09:37:08 -04:00
parent 9904bc5346
commit e4c2d534fe
2 changed files with 7 additions and 0 deletions

7
tools/env.sh Normal file
View file

@ -0,0 +1,7 @@
#!/usr/bin/env sh
find tools/bin -type f | while IFS= read -r tool; do
chmod +x "$tool"
done
PATH="$(pwd)/tools/bin:$PATH"