Skip to content

Commit

Permalink
Merge pull request #21 from thom311/th/cleanup-shebang
Browse files Browse the repository at this point in the history
[th/cleanup-shebang] all: use same shebang for python3 tools
  • Loading branch information
bn222 authored Aug 20, 2024
2 parents b865769 + 63504fd commit b300b3f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cx_fwup
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/env python3
#!/usr/bin/env python3

import os, sys

Expand Down
2 changes: 1 addition & 1 deletion fwdefaults
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

import os, sys
import common_bf
Expand Down
2 changes: 1 addition & 1 deletion fwup
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/env python3
#!/usr/bin/env python3

import sys
import requests
Expand Down
2 changes: 1 addition & 1 deletion fwversion
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

import common_bf
import argparse
Expand Down

0 comments on commit b300b3f

Please sign in to comment.