PlainOsBuilder/tests/make.sh

13 lines
141 B
Bash
Raw Normal View History

2023-12-20 18:18:01 +00:00
#!/bin/sh
if make -h > /dev/null; then
echo "[OK] Make installed..."
exit 0;
else
echo "[FAILED] Make is not installed..."
exit 1
fi