#!/usr/bin/env bash
# Build fonts from inkscape svg
set -e -o pipefail

bin/build
bin/install
if which sensible-browser 2>&1; then
  sensible-browser "http://webfont-test.com/"
else
  open "http://webfont-test.com/"
fi
