Skip to content

Commit

Permalink
Use a consistent Python interpreter in all scripts (#406)
Browse files Browse the repository at this point in the history
There are three Python scripts checked into this repository. Two
currently use the unversioned `python` executable, while the other one
specifically uses `python3`.

For the sake of consistency and reproducibility, this changes the two
ambiguous scripts to use `python3` like the third.

Signed-off-by: Scott K Logan <[email protected]>
Co-authored-by: Addisu Z. Taddese <[email protected]>
  • Loading branch information
cottsay and azeey authored Jan 24, 2024
1 parent a29a26f commit eddb0ef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion codecheck/cpplint.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
#
# Copyright (c) 2009 Google Inc. All rights reserved.
#
Expand Down
2 changes: 1 addition & 1 deletion tools/check_test_ran.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# Software License Agreement (BSD License)
#
# Copyright (c) 2008, Willow Garage, Inc.
Expand Down

0 comments on commit eddb0ef

Please sign in to comment.