From 3ea19f3cbb48862385bcf1cd708f974b8b5c8010 Mon Sep 17 00:00:00 2001 From: catsby Date: Wed, 14 Apr 2021 15:49:49 -0500 Subject: [PATCH] fail if assets aren't found --- scripts/assetcheck.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/assetcheck.sh b/scripts/assetcheck.sh index d54d360728cc8..18717e3160cbe 100755 --- a/scripts/assetcheck.sh +++ b/scripts/assetcheck.sh @@ -3,4 +3,5 @@ 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 fi