Skip to content

Commit af78249

Browse files
Clément Chigotgitster
Clément Chigot
authored andcommitted
contrib/svn-fe: fix shebang for svnrdump_sim.py
The shebang for a python script should be "/usr/bin/env python" and not "/usr/bin/python". On some OSes like AIX, python default path is not under "/usr/bin" ("/opt/freeware/bin" for AIX). Note the main reason behind this change is that AIX rpm will add a dependency on "/usr/bin/python" instead of "/usr/bin/env". Signed-off-by: Clément Chigot <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 5fa0f52 commit af78249

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contrib/svn-fe/svnrdump_sim.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/python
1+
#!/usr/bin/env python
22
"""
33
Simulates svnrdump by replaying an existing dump from a file, taking care
44
of the specified revision range.

0 commit comments

Comments
 (0)