diff options
author | j7b <[email protected]> | 2019-01-08 12:52:47 -0800 |
---|---|---|
committer | j7b <[email protected]> | 2019-01-08 12:52:47 -0800 |
commit | fad4a735e69bc00ec94d7669ec3d81d6f9536644 (patch) | |
tree | 218a8f99da2d7ef615835f8c85b4ed3972ef83d4 /tools | |
parent | 107fccb288f8ba6258d417c5e14921d4d97f3e64 (diff) | |
download | tinygo-fad4a735e69bc00ec94d7669ec3d81d6f9536644.tar.gz tinygo-fad4a735e69bc00ec94d7669ec3d81d6f9536644.zip |
tools: use env to search path for python3
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/gen-device-avr.py | 2 | ||||
-rwxr-xr-x | tools/gen-device-svd.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tools/gen-device-avr.py b/tools/gen-device-avr.py index 00cf7ba1f..f94644a9c 100755 --- a/tools/gen-device-avr.py +++ b/tools/gen-device-avr.py @@ -1,4 +1,4 @@ -#!/usr/bin/python3 +#!/usr/bin/env python3 import sys import os diff --git a/tools/gen-device-svd.py b/tools/gen-device-svd.py index dcfd3a2da..2202f97f0 100755 --- a/tools/gen-device-svd.py +++ b/tools/gen-device-svd.py @@ -1,4 +1,4 @@ -#!/usr/bin/python3 +#!/usr/bin/env python3 import sys import os |