On 15 April 2015 at 21:59, Vincent Legoll <[email protected]> wrote: > Add shebang line > > Signed-off-by: Vincent Legoll <[email protected]> > --- > t/test.py | 2 ++ > 1 file changed, 2 insertions(+) > mode change 100644 => 100755 t/test.py > > diff --git a/t/test.py b/t/test.py > old mode 100644 > new mode 100755 > index f9a2ab7..dae562a > --- a/t/test.py > +++ b/t/test.py > @@ -1,3 +1,5 @@ > +#!/usr/bin/env python
There's no guarantee that python 2 is an executable named "python". Commit e22723c8ee1 means the makefile always runs this file via "$(PYTHON) test.py", so do we need the #! line at all here? thanks -- PMM _______________________________________________ stgit-users mailing list [email protected] https://mail.gna.org/listinfo/stgit-users
