clarify comment at if statement

This commit is contained in:
Gertjan van den Burg
2019-11-08 10:53:18 +00:00
parent def8f9a2e3
commit 5210ad3610
+1 -1
View File
@@ -117,7 +117,7 @@ def build(project_dir, output_dir, test_command, test_requires, test_extras, bef
sh -c {test_command}
popd
)
# exit if tests failed
# exit if tests failed (needed for older bash versions)
if [ $? -ne 0 ]; then
exit 1;
fi