fix: switch shebang from hardcoded /usr/bin/python to portable /usr/bin/env python
Replace the explicit /usr/bin/python interpreter path with /usr/bin/env python in generate_corelib.py and generate_docs.py scripts, allowing the system to use the first python found in PATH instead of a fixed installation location.
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/python
|
#!/usr/bin/env python
|
||||||
import re
|
import re
|
||||||
|
|
||||||
with open("corelib.wren", "r") as f:
|
with open("corelib.wren", "r") as f:
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/python
|
#!/usr/bin/env python
|
||||||
|
|
||||||
import glob
|
import glob
|
||||||
import markdown
|
import markdown
|
||||||
|
|||||||
Reference in New Issue
Block a user