Skip to content

Commit

Permalink
python scripts: consistent shebang
Browse files Browse the repository at this point in the history
  • Loading branch information
lordfolken committed Oct 23, 2023
1 parent fa91c00 commit 5d68e4b
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion script/build/download-file.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python3
#!/bin/env python3
# -*- coding: utf-8 -*-

import argparse
Expand Down
2 changes: 1 addition & 1 deletion script/build/maps_config_js.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python3
#!/bin/env python3
# -*- coding: utf-8 -*-
"""Auto-generate https://github.com/XCSoar/xcsoar-data-repository/blob/master/data/maps.json."""

Expand Down
2 changes: 1 addition & 1 deletion script/build/sortrepo.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python3
#!/bin/env python3
# -*- coding: utf-8 -*-

import sys
Expand Down
2 changes: 1 addition & 1 deletion script/build/waypoints_js.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python3
#!/bin/env python3
# -*- coding: utf-8 -*-
"""
Auto-generate these files from directory listing xcsoar-data-content/waypoints:
Expand Down
2 changes: 1 addition & 1 deletion script/check/check_airspaces.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python3
#!/bin/env python3
# -*- coding: utf-8 -*-

import sys
Expand Down
2 changes: 1 addition & 1 deletion script/check/check_waypoints.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python3
#!/bin/env python3
# -*- coding: utf-8 -*-

import sys
Expand Down

0 comments on commit 5d68e4b

Please sign in to comment.