wscript: use consistent python shebang path

Most wscripts use
  #!/usr/bin/env python
Use that consistently.

The wscripts are not executed directly and do not need the shebang path,
but it might guide editors and other tools to recognize the files as
being Python-ish.
This commit is contained in:
Mads Kiilerich 2022-01-25 00:41:24 +01:00
parent 8017ba2340
commit 4fb3a23adb
9 changed files with 9 additions and 8 deletions

View File

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
import os

View File

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
import os

View File

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
import os

View File

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
import os

View File

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
import os

View File

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
import os

View File

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
import os

View File

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
import os

View File

@ -1,3 +1,4 @@
#!/usr/bin/env python
import waflib.Logs as Logs, waflib.Utils as Utils
import os