blob: a9190260ba16e0bb4a9911e0137b9140a5f080c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/bash
# Set up tests to run under Travis
set -e
set -x
PERL=`which perl`
sudo $PERL -I"SBO-Lib/lib" sbosnap fetch
echo "Not actually testing anything. Just verifying travis runs this."
exit 0
|