sparkfunX / Buzzard

Software tools for EAGLE silkscreen generation
100 stars 18 forks source link

missing shebang for script execution #32

Open oclyke opened 3 years ago

oclyke commented 3 years ago

not a need but would be nice to include a shebang at the top of the script. this would enable calling Buzzard like this:

./buzzard.py

instead of like this (as is currently required):

python buzzard.y

the shebang should take the form:

#!/usr/bin/env python3

according to stack overflow