Skip to content

Commit

Permalink
Use a consistent Python interpreter in all scripts
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]>
  • Loading branch information
cottsay committed Jan 24, 2024
1 parent cbdb0cc commit e08224e
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 e08224e

Please sign in to comment.