Display successful tests

This commit is contained in:
flow.gunso
2020-01-07 10:34:35 +01:00
parent 34df27de8f
commit ff117e8b95

View File

@@ -23,6 +23,8 @@ for binary in "${binaries[@]}"; do
if ! [ -x "$(command -v $binary)" ]; then if ! [ -x "$(command -v $binary)" ]; then
echo "$binary was not found" echo "$binary was not found"
failures+=($binary) failures+=($binary)
else
echo "$binary was found"
fi fi
done done