libstarlight/maketest.sh

12 lines
157 B
Bash
Raw Normal View History

#!/bin/bash
function abort {
2017-01-17 23:35:39 -05:00
echo Make or send failed
exit
}
cd libstarlight
make install || abort
cd ../testbed
make clean
make send || abort
cd ..