X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=graphics%2Fupdate;h=cee8a3ca152cb1d8054b4f00f9d27a83854f849e;hb=46f143db5a8bfcfd6de2a6ca9f7069e006eb8710;hp=f649d8df80442dd5218a18752936473a204e10a9;hpb=94aadbd62c259a73d7511522dd167d519c68c5f9;p=dcpomatic.git diff --git a/graphics/update b/graphics/update index f649d8df8..cee8a3ca1 100755 --- a/graphics/update +++ b/graphics/update @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/bash -e # # Update generated stuff in graphics/ from the source files. # @@ -6,13 +6,26 @@ # a) getting the wscript right is a complete pain in the arse # b) running Inkscape from the command line on OS X is a complete pain in the arse +set -e + pwd=`pwd` if [ `basename $pwd` != "graphics" ]; then echo "$0: run within graphics/" exit 1 fi +function required_font() +{ + check=$(fc-list | grep "$1") + if [ "$check" == "" ]; then + echo "Missing font $1" + exit 1 + fi +} + svg_apps="dcpomatic2_kdm dcpomatic2_server dcpomatic2_batch dcpomatic2_player dcpomatic2_playlist dcpomatic2_disk" +required_font "Libre Baskerville" + if [ `uname -s` == "Darwin" ]; then # Convert OS X icons using OS X-only iconutil