mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-06-20 05:22:03 +08:00
c5d5c5d1f3
date: 2025-10-24T00:30:59 master commit: 405631baf9685e171a0dd19547cb763f1b163d18
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 ../
|