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 cdf778a
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
1 change: 0 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,6 @@ jobs:
- name: "NPM"
run: |
mkdir -p "$NPM_CONFIG_PREFIX"
${GITHUB_WORKSPACE}/scripts/before_install.sh
- name: "Install Perl dependencies"
run: |
Expand Down
1 change: 0 additions & 1 deletion MANIFEST
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,6 @@ lib/npg_qc/utils/bam_genotype.pm
lib/npg_qc/utils/genotype_calling.pm
MANIFEST
README
scripts/before_install.sh
scripts/npgqc_dbix_schema_loader.pl
t/00-critic.t
t/00-distribution.t
Expand Down
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 cdf778a

Please sign in to comment.