Skip to content
Snippets Groups Projects

Avoid calling in bash scripts

Merged Teo Camarasu requested to merge teo/nofib:wip/T30 into master
5 files
+ 7
7
Compare changes
  • Side-by-side
  • Inline
Files
5
+ 2
2
@@ -13,7 +13,7 @@ HC=${3:-ghc}
mode=${4:-norm}
EXE=""
if [[ $(shell uname -s | grep -c 'MSYS\|MINGW') -eq 1 ]]
if [[ $(uname -s | grep -c 'MSYS\|MINGW') -eq 1 ]]
then
EXE=".exe"
fi
@@ -46,4 +46,4 @@ ${output}/fasta-c${EXE} $MODE_ARGS | tr -d '\r' > ${output}/fasta.stdout
# ./fasta-c $(NORM_OPTS) | tr -d '\r' > $@
# k-nucleotide.slowstdin : fasta-c
# ./fasta-c $(SLOW_OPTS) | tr -d '\r' > $@
\ No newline at end of file
# ./fasta-c $(SLOW_OPTS) | tr -d '\r' > $@
Loading