diff options
author | Brian Downing <bdowning@lavos.net> | 2007-07-12 09:16:11 -0500 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-07-12 14:18:24 -0700 |
commit | b492bbd8362840f9ac1e5389cdfaa8dd73ca793b (patch) | |
tree | e7f411b7b798e93b25cd24c980b105fd4e5b1507 /contrib/stats | |
parent | 750bd6ac350079cf1f76c24acb7686ad89a95102 (diff) | |
download | git-b492bbd8362840f9ac1e5389cdfaa8dd73ca793b.tar.gz |
Correct shebang line for contrib/stats/packinfo.pl
"/bin/perl"? What was I thinking?
Signed-off-by: Brian Downing <bdowning@lavos.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'contrib/stats')
-rwxr-xr-x | contrib/stats/packinfo.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/stats/packinfo.pl b/contrib/stats/packinfo.pl index 792673a325..aab501ea08 100755 --- a/contrib/stats/packinfo.pl +++ b/contrib/stats/packinfo.pl @@ -1,4 +1,4 @@ -#!/bin/perl +#!/usr/bin/perl # # This tool will print vaguely pretty information about a pack. It # expects the output of "git-verify-pack -v" as input on stdin. |