Skip to content

Commit

Permalink
deobfuscator scripts: use warnings pragma instead of -w flag
Browse files Browse the repository at this point in the history
  • Loading branch information
carandraug committed Aug 23, 2018
1 parent 15c4144 commit 0a5dd86
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion deobfuscator/Deobfuscator/bin/run-deobfuscator-update.pl
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/usr/bin/perl -w
#!/usr/bin/perl
use strict;
use warnings;

my $base = '/home/websites/bioperl.org';
my $srcdir = "$base/src/git";
Expand Down
2 changes: 1 addition & 1 deletion deobfuscator/Deobfuscator/cgi-bin/deob_detail.cgi
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/perl -w
#!/usr/bin/perl

# Deob_detail.cgi
# part of the Deobfuscator package
Expand Down

0 comments on commit 0a5dd86

Please sign in to comment.