Skip to content

Commit

Permalink
Updated shebang line for the mock tools scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
mgcam committed Oct 13, 2023
1 parent c1a1d15 commit 6beeda6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions t/autoqc_util.pm
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ sub write_seqtk_script {
my $fh;
open($fh, '>', $script_path) or croak "Cannot open $script_path for writing";

print $fh '#!/usr/local/bin/bash';
print $fh '#!/usr/bin/env bash';
print $fh "\n";
print $fh '# Script to fake seqtk in testing. Automatically generated by npg at ' . time;
print $fh "\n";
Expand Down Expand Up @@ -108,7 +108,7 @@ sub write_bwa_script {
my $fh;
open($fh, '>', $script_path) or croak "Cannot open $script_path for writing";

print $fh '#!/usr/local/bin/bash';
print $fh '#!/usr/bin/env bash';
print $fh "\n";
print $fh '# Script to fake BWA tool in testing. Automatically generated by npg at ' . time;
print $fh "\n";
Expand Down

0 comments on commit 6beeda6

Please sign in to comment.