diff options
author | Simon Josefsson <simon@josefsson.org> | 2024-10-09 23:03:09 +0200 |
---|---|---|
committer | Simon Josefsson <simon@josefsson.org> | 2024-10-09 23:03:09 +0200 |
commit | 0cd03593d19ee66add6b325d5fa46cec45cd8c01 (patch) | |
tree | 489b19f3cd13481dd862c37916ef9eaac2c505ef /git2cl | |
parent | bb9c30961e2a2d7e242643b6d6df7e44c3731121 (diff) | |
download | git2cl-0cd03593d19ee66add6b325d5fa46cec45cd8c01.zip git2cl-0cd03593d19ee66add6b325d5fa46cec45cd8c01.tar.gz git2cl-0cd03593d19ee66add6b325d5fa46cec45cd8c01.tar.bz2 |
Don't hardcode perl path, from gnulib's gitlog-to-changelog.
Diffstat (limited to 'git2cl')
-rwxr-xr-x | git2cl | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -1,4 +1,5 @@ -#!/usr/bin/perl +#!/bin/sh +#! -*-perl-*- # Copyright (C) 2007-2024 Simon Josefsson <simon@josefsson.org> # Copyright (C) 2008-2024 Free Software Foundation, Inc. @@ -22,7 +23,10 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -my $VERSION = '2024-10-09 21:01'; # UTC +eval 'exec perl -wSx "$0" "$@"' + if 0; + +my $VERSION = '2024-10-09 21:02'; # UTC =head1 NAME |