diff options
| author | Junio C Hamano <gitster@pobox.com> | 2020-11-09 14:06:25 -0800 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2020-11-09 14:06:25 -0800 |
| commit | 65681e75c1e57cb3c575969b4703323e6bdd447f (patch) | |
| tree | 9d60f123a5a14cca9d46309cc2de1dac552f63db /git-svn.perl | |
| parent | bf69da56c9e8adac1eee91b7a8b000363156c583 (diff) | |
| parent | 5338ed2b26ebf91de246c59e525ad254dcbc7a84 (diff) | |
Merge branch 'jk/perl-warning'
Dev support.
* jk/perl-warning:
perl: check for perl warnings while running tests
Diffstat (limited to 'git-svn.perl')
| -rwxr-xr-x | git-svn.perl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-svn.perl b/git-svn.perl index 58f5a7ac8f..70cb5e2a83 100755 --- a/git-svn.perl +++ b/git-svn.perl @@ -2,7 +2,7 @@ # Copyright (C) 2006, Eric Wong <normalperson@yhbt.net> # License: GPL v2 or later use 5.008; -use warnings; +use warnings $ENV{GIT_PERL_FATAL_WARNINGS} ? qw(FATAL all) : (); use strict; use vars qw/ $AUTHOR $VERSION $oid $oid_short $oid_length |
