diff options
author | R. Tyler Ballance <tyler@monkeypox.org> | 2010-03-21 12:01:50 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-03-24 14:33:54 -0700 |
commit | 44211e8c2ea48e1149cb36a02bd54f2d21c207f4 (patch) | |
tree | c4eed118bd20c83b4a31a677a262ff5d43209e05 /contrib/fast-import | |
parent | Git 1.7.0.3 (diff) | |
download | tgif-44211e8c2ea48e1149cb36a02bd54f2d21c207f4.tar.xz |
Correct references to /usr/bin/python which does not exist on FreeBSD
On FreeBSD, Python does not ship as part of the base system but is available
via the ports system, which install the binary in /usr/local/bin.
Signed-off-by: R. Tyler Ballance <tyler@monkeypox.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'contrib/fast-import')
-rwxr-xr-x | contrib/fast-import/import-zips.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/fast-import/import-zips.py b/contrib/fast-import/import-zips.py index 7051a83a59..82f5ed3ddc 100755 --- a/contrib/fast-import/import-zips.py +++ b/contrib/fast-import/import-zips.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python ## zip archive frontend for git-fast-import ## |