Skip to content

Commit 8164616

Browse files
Julian Lettnervarungandhi-apple
authored andcommitted
[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 (cherry picked from commit 6f1d4fb)
1 parent ae211b0 commit 8164616

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/utils/lit/lit.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
22

33
from lit.main import main
44

0 commit comments

Comments
 (0)