forked from OSchip/llvm-project
[lit] Update lit.py shebang for Python3
Update shebang to always use Python3 when executing `lit.py` directly. A previous change of mine [1] revealed that we still use Python2 on some bot configurations that invoke `llvm/utils/lit/lit.py` as a script directly (instead of `python3 path/to/lit.py`). [1] https://reviews.llvm.org/D94734 Differential Revision: https://reviews.llvm.org/D95393
This commit is contained in:
parent
350395d82f
commit
6f1d4fb8fc
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/env python
|
||||
#!/usr/bin/env python3
|
||||
|
||||
from lit.main import main
|
||||
|
||||
|
|
Loading…
Reference in New Issue