mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
ecf1c231ae
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
7 lines
89 B
Python
Executable File
7 lines
89 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
from lit.main import main
|
|
|
|
if __name__ == '__main__':
|
|
main()
|