Skip to content

Commit

Permalink
fix python shebangs
Browse files Browse the repository at this point in the history
  • Loading branch information
CamJN committed Jul 22, 2024
1 parent 70dd237 commit a91821b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = 4.0.0
VERSION = 4.0.1
ifneq ($VERSION, edge)
MAJOR_VERSION := $(shell awk -v OFS=. -F. '{print $$1,$$2}' <<< $(VERSION))
endif
Expand Down
2 changes: 1 addition & 1 deletion image/libcheck
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/python2
import os, sys, subprocess, re

SYSTEM_LIBRARIES_REGEX = \
Expand Down
2 changes: 1 addition & 1 deletion image/setuser
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/python2
import sys, os, pwd

if len(sys.argv) < 3:
Expand Down

0 comments on commit a91821b

Please sign in to comment.