open-vault/scripts/assetcheck.sh

14 lines
350 B
Bash
Executable File

#!/usr/bin/env bash
if [[ ! -e http/web_ui/index.html ]]
then
printf "Compiled UI assets not found. They can be built with: make static-dist\n\n"
exit 1
else
if [[ `find http/web_ui/index.html -mmin +10080` ]]
then
printf "Compiled UI assets are more than one week old. They can be rebuilt with: make static-dist\n\n"
exit 1
fi
fi