libstarlight/maketest.sh
2017-01-17 23:35:39 -05:00

12 lines
157 B
Bash

#!/bin/bash
function abort {
echo Make or send failed
exit
}
cd libstarlight
make install || abort
cd ../testbed
make clean
make send || abort
cd ..