mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-02-19 05:24:10 +08:00
version: dragonpilot v0.9.2 beta for EON/C2 date: 2023-03-27T06:11:06 dp-dev(priv2) master commit: 0a08aa2b73a505e11e4c98ac6c5989464b7d339f
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 ../
|