open-vault/scripts/assetcheck.sh
2019-03-25 12:07:14 -05:00

12 lines
332 B
Bash
Executable file

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