aboutsummaryrefslogtreecommitdiff
path: root/t/travis.sh
diff options
context:
space:
mode:
Diffstat (limited to 't/travis.sh')
-rwxr-xr-xt/travis.sh7
1 files changed, 6 insertions, 1 deletions
diff --git a/t/travis.sh b/t/travis.sh
index a919026..8b79bac 100755
--- a/t/travis.sh
+++ b/t/travis.sh
@@ -5,7 +5,12 @@ set -e
set -x
PERL=`which perl`
-sudo $PERL -I"SBO-Lib/lib" sbosnap fetch
+run() {
+ sudo $PERL -I"SBO-Lib/lib" "$*"
+}
+
+run(sboconfig -V 14.1)
+run(sbosnap fetch)
echo "Not actually testing anything. Just verifying travis runs this."
exit 0