From ae3a572980f015a1266cbb3c0c7fe45f696cd8db Mon Sep 17 00:00:00 2001 From: Jonathan Blake Date: Sat, 16 Nov 2019 08:09:53 -0800 Subject: [PATCH] Fix /usr/bin/env shebang --- common/scripts/gbtosvg.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/common/scripts/gbtosvg.pl b/common/scripts/gbtosvg.pl index e9fa73f..4f53b38 100755 --- a/common/scripts/gbtosvg.pl +++ b/common/scripts/gbtosvg.pl @@ -1,8 +1,9 @@ -#!/usr/bin/env perl -w +#!/usr/bin/env perl # # gbtosvg.pl use strict; +use warnings; delete @ENV{qw(PATH IFS CDPATH ENV BASH_ENV)}; # clean house for taint mode -- 2.17.1