TT#69200 Set shebang for perl scripts

Unix systems default to using /bin/sh when trying to run an executable
script that has no shebang.

Change-Id: I18ef857fbc54fd72e6ad06b0f85c8c908fb0880d
changes/12/35012/3
Guillem Jover 6 years ago
parent 803bacf8a5
commit 85d59d562a

@ -1,7 +1,10 @@
#!/usr/bin/perl
use strict;
use warnings;
use Module::Build qw();
my $builder = Module::Build->new(
dist_name => 'NGCP::BulkProcessor',
dist_abstract => 'Framework for parallel/distributed processing of record blocks',

@ -1,3 +1,5 @@
#!/usr/bin/perl
use strict;
## no critic

@ -1,3 +1,5 @@
#!/usr/bin/perl
use strict;
## no critic
@ -142,4 +144,4 @@ $file->close(
);
#print $test->{structure}->to_string()."\n";
#print $test->get_hex();
#print $test->get_hex();

@ -1,3 +1,5 @@
#!/usr/bin/perl
use strict;
## no critic

@ -1,3 +1,5 @@
#!/usr/bin/perl
use strict;
## no critic

@ -1,3 +1,5 @@
#!/usr/bin/perl
use strict;
use warnings;

@ -1,3 +1,5 @@
#!/usr/bin/perl
use strict;
## no critic

@ -1,3 +1,5 @@
#!/usr/bin/perl
use strict;
## no critic

Loading…
Cancel
Save