Skip to content

Commit

Permalink
Use /usr/bin/env to detect python location
Browse files Browse the repository at this point in the history
...in case it's installed in a nonstandard location.
  • Loading branch information
jgarvin authored and apenwarr committed Feb 23, 2011
1 parent 0a14db9 commit e879014
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion redo-always.py
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
import sys, os
import vars, state
from log import err
Expand Down
2 changes: 1 addition & 1 deletion redo-ifchange.py
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
import sys, os

import vars_init
Expand Down
2 changes: 1 addition & 1 deletion redo-ifcreate.py
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
import sys, os
import vars, state
from log import err
Expand Down
2 changes: 1 addition & 1 deletion redo-ood.py
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
import sys, os

import vars_init
Expand Down
2 changes: 1 addition & 1 deletion redo-sources.py
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
import sys, os

import vars_init
Expand Down
2 changes: 1 addition & 1 deletion redo-stamp.py
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
import sys, os
import vars, state
from log import err, debug2
Expand Down
2 changes: 1 addition & 1 deletion redo-targets.py
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
import sys, os

import vars_init
Expand Down
2 changes: 1 addition & 1 deletion redo-unlocked.py
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
import sys, os
import state
from log import err
Expand Down
2 changes: 1 addition & 1 deletion redo.py
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
import sys, os
import options
from helpers import atoi
Expand Down

0 comments on commit e879014

Please sign in to comment.