mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2024-12-28 00:42:54 -05:00
23 lines
725 B
Bash
Executable file
23 lines
725 B
Bash
Executable file
#!/bin/bash
|
|
#
|
|
# Paper.js - The Swiss Army Knife of Vector Graphics Scripting.
|
|
# http://paperjs.org/
|
|
#
|
|
# Copyright (c) 2011 - 2020, Jürg Lehni & Jonathan Puckey
|
|
# http://juerglehni.com/ & https://puckey.studio/
|
|
#
|
|
# Distributed under the MIT license. See LICENSE file for details.
|
|
#
|
|
# All rights reserved.
|
|
|
|
# Download and instal assets, but only if they haven't been installed from the
|
|
# cache yet.
|
|
if [ ! -d ~/.assets ] || [ -z "$(ls -A ~/.assets)" ]; then
|
|
mkdir -p ~/.assets
|
|
wget http://sourceforge.net/p/tellmatic/git/ci/master/tree/img/arial.ttf?format=raw -O ~/.assets/arial.ttf
|
|
fi
|
|
|
|
# Install fonts each time, as they can't be cached in Travis.
|
|
mkdir -p ~/.fonts
|
|
cp -p ~/.assets/arial.ttf ~/.fonts
|
|
fc-cache -f -v
|