syssetup/check.bash
2023-09-23 19:26:45 -05:00

14 lines
No EOL
281 B
Bash
Executable file

#!/bin/bash
# The componet to check system related things
if [ -f /usr/bin/makeself.sh ]; then
# makeself is installed
echo "makeself is installed, good"
else
# makeself is not installed
echo "makeself is not installed please install via this application"
sleep 3
fi