converge/getbootstrapicons.sh
Erik Brakkee 8d554a5ce1 getting the bootstrap icons (not checking them in).
Split up instructions for working with agents.
2024-09-08 11:16:49 +02:00

18 lines
325 B
Bash
Executable File

#!/bin/bash
cd $( dirname $0 )
set -e
tmpfile=/tmp/icons.zip.$$
trap "rm -f $tmpfile. exit" EXIT
curl --fail-with-body -L https://github.com/twbs/icons/releases/download/v1.11.3/bootstrap-icons-1.11.3.zip > $tmpfile
rm -rf static/icons
mkdir -p static/icons
cd static/icons
jar xvf "$tmpfile"
mv bootstrap-icons*/* .