Skip to content

Commit

Permalink
DEVEX-2451 Add python3 shebang so that scripts can be run directly. (#90
Browse files Browse the repository at this point in the history
)
  • Loading branch information
markwoon authored Dec 3, 2024
1 parent 31f8bc2 commit b727685
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions scripts/create_manifest.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/env python3
import argparse
import bz2
import json
Expand Down
1 change: 1 addition & 0 deletions scripts/filter_manifest.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/env python3
import argparse
from pprint import pprint
import json
Expand Down
1 change: 1 addition & 0 deletions scripts/ls_manifest.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/env python3
import argparse
from pprint import pprint
import json
Expand Down
2 changes: 1 addition & 1 deletion scripts/run_tests.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
import argparse
from collections import namedtuple
import dxpy
Expand Down
1 change: 1 addition & 0 deletions scripts/split_manifest.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/env python3
import argparse
from pprint import pprint
import json
Expand Down

0 comments on commit b727685

Please sign in to comment.