13 lines
151 B
Bash
Executable File
13 lines
151 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if makeinfo -h > /dev/null; then
|
|
echo "[OK] Texinfo installed..."
|
|
exit 0;
|
|
|
|
else
|
|
echo "[FAILED] Texinfo is not installed..."
|
|
exit 1
|
|
|
|
fi
|
|
|