Fix hash-bangs

/usr/bin/bash isn't portable.
This commit is contained in:
Ben Gamari 2021-07-30 12:41:50 -04:00 committed by Dario Nieuwenhuis
parent 8bb9c26d38
commit e735ea9769
3 changed files with 4 additions and 2 deletions

2
d
View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
set -e
cd $(dirname $0)

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
echo "Usage: ./extract.sh all|<board_name> <peripheral>"

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python3
import xmltodict
import yaml
import re