17 lines
497 B
Bash
Executable file
17 lines
497 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
VERSION=1.10.5
|
|
URL=https://github.com/twbs/icons/releases/download/v${VERSION}/bootstrap-icons-${VERSION}.zip
|
|
|
|
if [[ ! -d "$TRUNK_DIST_DIR/bootstrap-icons" ]]; then
|
|
cd "$TRUNK_STAGING_DIR" || {
|
|
echo "Can't cd to staging directory"
|
|
exit 1
|
|
}
|
|
wget "$URL"
|
|
unzip bootstrap-icons-$VERSION.zip
|
|
rm bootstrap-icons-$VERSION.zip
|
|
mv bootstrap-icons-$VERSION bootstrap-icons
|
|
else
|
|
cp -r "$TRUNK_DIST_DIR/bootstrap-icons" "$TRUNK_STAGING_DIR"
|
|
fi
|