7d7f0054e5
date: 2024-02-21T23:02:42 master commit: 0b4d08fab8e35a264bc7383e878538f8083c33e5
15 lines
274 B
Bash
Executable File
15 lines
274 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
|
|
cd $DIR
|
|
|
|
if [ ! -d icons/ ]; then
|
|
git clone https://github.com/twbs/icons/
|
|
fi
|
|
|
|
cd icons
|
|
git fetch --all
|
|
git checkout d5aa187483a1b0b186f87adcfa8576350d970d98
|
|
cp bootstrap-icons.svg ../
|