File: all.sh

package info (click to toggle)
bowtie 1.2.2%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 16,704 kB
  • sloc: cpp: 35,614; perl: 5,903; ansic: 1,247; sh: 1,128; python: 483; makefile: 426
file content (14 lines) | stat: -rwxr-xr-x 219 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

# Run from bowtie directory
# Usually should do 'make allall' first

d=`dirname $0`

for i in `ls $d/*.pl` ; do
	if ! perl $i ; then
		echo "Error running $i; aborting..."
		exit 1
	fi
done
echo "ALL PASSED"