Skip to content

Commit

Permalink
Update make_debian.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
john30 authored Oct 9, 2021
1 parent e758a6f commit 39d1326
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion make_debian.sh
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,11 @@ echo "*************"
echo " test"
echo "*************"
echo
(cd src/lib/ebus/test && make test >/dev/null && ./test_filereader && ./test_data && ./test_message && ./test_symbol) || (echo "test failed"; exit 1)
testdie() {
echo "test failed"
exit 1
}
(cd src/lib/ebus/test && make >/dev/null && ./test_filereader && ./test_data && ./test_message && ./test_symbol) || testdie

echo
echo "*************"
Expand Down

0 comments on commit 39d1326

Please sign in to comment.