diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 2962c4b8..c378dcb0 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -93,7 +93,6 @@ jobs: - name: "NPM" run: | mkdir -p "$NPM_CONFIG_PREFIX" - ${GITHUB_WORKSPACE}/scripts/before_install.sh - name: "Install Perl dependencies" run: | diff --git a/MANIFEST b/MANIFEST index 3c74d716..6ac8f04b 100644 --- a/MANIFEST +++ b/MANIFEST @@ -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 diff --git a/t/autoqc_util.pm b/t/autoqc_util.pm index ad20a362..4777c6d5 100644 --- a/t/autoqc_util.pm +++ b/t/autoqc_util.pm @@ -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"; @@ -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";