blog/check-homepage.sh

17 lines
313 B
Bash
Raw Permalink Normal View History

2024-09-28 06:31:52 +00:00
#!/bin/sh
## Homepage should exists and non-empty
HOMEPAGE="public/microblog/index.html"
if [ ! -f "$HOMEPAGE" ]; then
2024-09-28 22:34:00 +00:00
echo "Error: microblog doesn't exist"
2024-09-28 06:31:52 +00:00
exit 1
else
FILE_SIZE=$(ls -s "$HOMEPAGE" | cut -d" " -f1)
if [ "$FILE_SIZE" = 0 ]; then
2024-09-28 22:34:00 +00:00
echo "Error: microblog is empty"
2024-09-28 06:31:52 +00:00
exit 1
fi
fi