浏览代码

projects/memtest: Fix the python shebang of the test scripts

If we're working in a virtualenv we wnat to use whatever python
is in the PATH and not a hardcoded one.

Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
Sylvain Munaut 3 年之前
父节点
当前提交
d6f5270740
共有 3 个文件被更改,包括 3 次插入3 次删除
  1. 1 1
      projects/memtest/sw/memtest-hyperram.py
  2. 1 1
      projects/memtest/sw/memtest-spi.py
  3. 1 1
      projects/memtest/sw/memtest.py

+ 1 - 1
projects/memtest/sw/memtest-hyperram.py

@@ -1,4 +1,4 @@
-#!/usr/bin/python3
+#!/usr/bin/env python3
 
 import sys
 

+ 1 - 1
projects/memtest/sw/memtest-spi.py

@@ -1,4 +1,4 @@
-#!/usr/bin/python3
+#!/usr/bin/env python3
 
 import binascii
 import random

+ 1 - 1
projects/memtest/sw/memtest.py

@@ -1,4 +1,4 @@
-#!/usr/bin/python3
+#!/usr/bin/env python3
 
 import binascii
 import random